Vanessa 2025-06-27 11:56:52 +08:00
parent 80ebe9ba06
commit 1c0f18f626

View file

@ -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;