🐛 Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428
This commit is contained in:
parent
87ecb7f24a
commit
39c5744f2f
1 changed files with 2 additions and 0 deletions
|
@ -130,6 +130,8 @@ func (value *Value) String() string {
|
|||
return value.Number.FormattedContent
|
||||
case KeyTypeDate:
|
||||
return value.Date.FormattedContent
|
||||
case KeyTypeSelect:
|
||||
return value.MSelect[0].Content
|
||||
case KeyTypeMSelect:
|
||||
var ret []string
|
||||
for _, v := range value.MSelect {
|
||||
|
|
Loading…
Add table
Reference in a new issue