diff --git a/jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue b/jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue index 130c8598..ac86908b 100644 --- a/jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue +++ b/jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue @@ -2,9 +2,11 @@
+ - {{ getValues ?? ' ' }} + {{ typeof getValues === 'string' && getValues.length === 0 ? ' ' : getValues ?? ' ' }} +