Browse Source

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

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

+ 1 - 1
kernel/av/value.go

@@ -119,7 +119,7 @@ func (value *Value) String() string {
 		}
 		}
 		var ret []string
 		var ret []string
 		for _, v := range value.MAsset {
 		for _, v := range value.MAsset {
-			ret = append(ret, v.Content)
+			ret = append(ret, v.Name+" "+v.Content)
 		}
 		}
 		return strings.Join(ret, " ")
 		return strings.Join(ret, " ")
 	case KeyTypeTemplate:
 	case KeyTypeTemplate: