Procházet zdrojové kódy

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

Daniel před 1 rokem
rodič
revize
b4ba126d7b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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
 		for _, v := range value.MAsset {
-			ret = append(ret, v.Content)
+			ret = append(ret, v.Name+" "+v.Content)
 		}
 		return strings.Join(ret, " ")
 	case KeyTypeTemplate: