Skip to content

Commit

Permalink
🐛 Database table view export does not display select content Fix #9428
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Oct 14, 2023
1 parent 87ecb7f commit 39c5744
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kernel/av/av.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 39c5744

Please sign in to comment.