This commit is contained in:
Daniel 2024-03-10 22:28:18 +08:00
parent aab1e965e4
commit b4ba126d7b
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -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: