mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-18 23:50:13 +01: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
1 changed files with 2 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue