Browse Source

fix: table cell edit bug.

pull/768/head
cKey 3 years ago
parent
commit
f9f474be02
  1. 5
      apps/vue/src/components/Table/src/components/editable/EditableCell.vue

5
apps/vue/src/components/Table/src/components/editable/EditableCell.vue

@ -404,9 +404,8 @@
column: this.column, column: this.column,
index: this.index, index: this.index,
}) })
: this.getValues : (this.getValues ?? "\u00A0")
? this.getValues }
: '\u00A0'}
</div> </div>
{!this.column.editRow && <FormOutlined class={`${this.prefixCls}__normal-icon`} />} {!this.column.editRow && <FormOutlined class={`${this.prefixCls}__normal-icon`} />}
</div> </div>

Loading…
Cancel
Save