From 464a7a6aee764c1b175edac0468a6a4339bd9731 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Fri, 7 Jul 2023 09:52:18 +0800 Subject: [PATCH] :art: Add number type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8690 --- kernel/av/cell.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/av/cell.go b/kernel/av/cell.go index eb78ce85c..bb78f5605 100644 --- a/kernel/av/cell.go +++ b/kernel/av/cell.go @@ -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 {