diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index 6824c9e41..d32921a87 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -1184,9 +1184,12 @@ export const cellValueIsEmpty = (value: IAVCellValue) => { if (value.type === "checkbox") { return false; } - if (["text", "number", "block", "url", "phone", "email", "template"].includes(value.type)) { + if (["text", "block", "url", "phone", "email", "template"].includes(value.type)) { return !value[value.type as "text"]?.content; } + if (value.type === "number") { + return !value.number?.isNotEmpty; + } if (["mSelect", "mAsset", "select"].includes(value.type)) { if (value[(value.type === "select" ? "mSelect" : value.type) as "mSelect"]?.length > 0) { return false;