🎨 Improve av

This commit is contained in:
Daniel 2025-08-26 10:38:26 +08:00
parent 3182f7abb8
commit b332574217
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 15 additions and 49 deletions

View file

@ -355,7 +355,7 @@ func (value *Value) IsEmpty() bool {
if nil == value.Template {
return true
}
return "" == value.Template.Content
return "" == strings.TrimSpace(value.Template.Content)
case KeyTypeCreated:
if nil == value.Created {
return true