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

This commit is contained in:
Daniel 2023-07-22 22:28:46 +08:00
parent c9d9a79ebb
commit 04d0d563de
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -182,8 +182,9 @@ func Round(val float64, precision int) float64 {
}
type ValueDate struct {
Content int64 `json:"content"`
Content2 int64 `json:"content2"`
Content int64 `json:"content"`
Content2 int64 `json:"content2"`
HasEndDate bool `json:"hasEndDate"`
}
type ValueSelect struct {