🐛 Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428

This commit is contained in:
Daniel 2023-10-14 09:46:29 +08:00
parent 87ecb7f24a
commit 39c5744f2f
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -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 {