Browse Source

:art: Database table view in-table search https://github.com/siyuan-note/siyuan/issues/10419

Daniel 1 year ago
parent
commit
aab1e965e4
1 changed files with 2 additions and 1 deletions
  1. 2 1
      kernel/av/value.go

+ 2 - 1
kernel/av/value.go

@@ -82,7 +82,8 @@ func (value *Value) String() string {
 		if nil == value.Date {
 			return ""
 		}
-		return value.Date.FormattedContent
+		formatted := NewFormattedValueDate(value.Date.Content, value.Date.Content2, DateFormatNone, value.Date.IsNotTime, value.Date.HasEndDate)
+		return formatted.FormattedContent
 	case KeyTypeSelect:
 		if 1 > len(value.MSelect) {
 			return ""