fix(table): editable icon not show with empty cell
修复可编辑单元格当内容为空时不会显示编辑图标的问题 fixed: #1103
This commit is contained in:
parent
3a5d1a5757
commit
edc3096565
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
- **CodeEditor** 修复 JSON 编辑器在格式化无效 JSON 文本时会抛出异常的问题
|
- **CodeEditor** 修复 JSON 编辑器在格式化无效 JSON 文本时会抛出异常的问题
|
||||||
- **Tinymce** 修复 inline 模式在一些场景下会出现异常的问题
|
- **Tinymce** 修复 inline 模式在一些场景下会出现异常的问题
|
||||||
|
- **BasicTable** 修复可编辑单元格的内容为空时,不会显示编辑图标的问题
|
||||||
- **其它**
|
- **其它**
|
||||||
- 修复部分封装组件在使用插槽时报错的问题
|
- 修复部分封装组件在使用插槽时报错的问题
|
||||||
- 修复`useECharts`的`theme`参数不起作用的问题
|
- 修复`useECharts`的`theme`参数不起作用的问题
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
@click="handleEdit"
|
@click="handleEdit"
|
||||||
>
|
>
|
||||||
<div class="cell-content" :title="column.ellipsis ? getValues ?? '' : ''">{{
|
<div class="cell-content" :title="column.ellipsis ? getValues ?? '' : ''">{{
|
||||||
getValues ?? ' '
|
getValues ? getValues : ' '
|
||||||
}}</div>
|
}}</div>
|
||||||
<FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" />
|
<FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue