From 04d0d563de70c78e5e877b8ad543923a38c94383 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Sat, 22 Jul 2023 22:28:46 +0800 Subject: [PATCH] :art: Add date type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8692 --- kernel/av/av.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kernel/av/av.go b/kernel/av/av.go index 640cc4989..24066d4af 100644 --- a/kernel/av/av.go +++ b/kernel/av/av.go @@ -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 {