Browse Source

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

Daniel 1 năm trước cách đây
mục cha
commit
aab1e965e4
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  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 ""