This commit is contained in:
Daniel 2025-08-22 11:17:57 +08:00
parent 76266cac87
commit cd2b131dc9
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 20 additions and 8 deletions

View file

@ -65,6 +65,8 @@ func (value *Value) SetUpdatedAt(mills int64) {
}
}
const CheckboxCheckedStr = "√"
func (value *Value) String(format bool) string {
if nil == value {
return ""
@ -153,7 +155,7 @@ func (value *Value) String(format bool) string {
return ""
}
if value.Checkbox.Checked {
return "√"
return CheckboxCheckedStr
}
return ""
case KeyTypeRelation: