🎨 Add number type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8690

This commit is contained in:
Daniel 2023-07-07 09:52:18 +08:00
parent 1abe5dee96
commit 464a7a6aee
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -232,7 +232,8 @@ type ValueText struct {
}
type ValueNumber struct {
Content float64 `json:"content"`
Content float64 `json:"content"`
IsNotEmpty bool `json:"isNotEmpty"`
}
type ValueDate struct {