Skip to content

Commit

Permalink
fix(table): fix the initial data display of editable cells (#218)
Browse files Browse the repository at this point in the history
修正可编辑单元格初始数据显示
  • Loading branch information
liuwave authored Jan 26, 2021
1 parent 2201629 commit 9ea257e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div :class="prefixCls">
<div v-show="!isEdit" :class="`${prefixCls}__normal`" @click="handleEdit">
{{ value || '&nbsp;' }}
{{ getValues || '&nbsp;' }}
<FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" />
</div>

Expand Down Expand Up @@ -312,6 +312,7 @@
handleOptionsChange,
getWrapperStyle,
getRowEditable,
getValues,
// getSize,
};
},
Expand Down

0 comments on commit 9ea257e

Please sign in to comment.