From f9f474be022bce321e2c03cbcc71899cad7b043d Mon Sep 17 00:00:00 2001 From: cKey <35512826+colinin@users.noreply.github.com> Date: Wed, 1 Feb 2023 13:54:26 +0800 Subject: [PATCH] fix: table cell edit bug. --- .../Table/src/components/editable/EditableCell.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/vue/src/components/Table/src/components/editable/EditableCell.vue b/apps/vue/src/components/Table/src/components/editable/EditableCell.vue index 9533564a0..975a900d0 100644 --- a/apps/vue/src/components/Table/src/components/editable/EditableCell.vue +++ b/apps/vue/src/components/Table/src/components/editable/EditableCell.vue @@ -404,9 +404,8 @@ column: this.column, index: this.index, }) - : this.getValues - ? this.getValues - : '\u00A0'} + : (this.getValues ?? "\u00A0") + } {!this.column.editRow && }