fix: relax closed values validation

because we can't ensure this when merging updates from server
This commit is contained in:
Tienson Qin
2025-11-18 14:12:14 +08:00
parent 7b07116b41
commit 8bd6acfb2a
2 changed files with 10 additions and 17 deletions

View File

@@ -1096,7 +1096,12 @@
[:span.number (str value')]
:else
(inline-text {} :markdown (str value'))))))
[:span.inline-flex.w-full
(let [value' (str value')
value' (if (string/blank? value')
"Empty"
value')]
(inline-text {} :markdown value'))]))))
(rum/defc select-item
[property type value {:keys [page-cp inline-text other-position? property-position table-view? _icon?] :as opts}]