mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-01 14:28:49 +01:00
🎨 Improve av https://github.com/siyuan-note/siyuan/issues/15653
This commit is contained in:
parent
76266cac87
commit
cd2b131dc9
2 changed files with 20 additions and 8 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue