mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-15 08:30:42 +08:00
🐛 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
@ -130,6 +130,8 @@ func (value *Value) String() string {
|
|||||||
return value.Number.FormattedContent
|
return value.Number.FormattedContent
|
||||||
case KeyTypeDate:
|
case KeyTypeDate:
|
||||||
return value.Date.FormattedContent
|
return value.Date.FormattedContent
|
||||||
|
case KeyTypeSelect:
|
||||||
|
return value.MSelect[0].Content
|
||||||
case KeyTypeMSelect:
|
case KeyTypeMSelect:
|
||||||
var ret []string
|
var ret []string
|
||||||
for _, v := range value.MSelect {
|
for _, v := range value.MSelect {
|
||||||
|
Loading…
Reference in New Issue
Block a user