mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-01-23 20:00:19 +08:00
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 文本时会抛出异常的问题
|
||||
- **Tinymce** 修复 inline 模式在一些场景下会出现异常的问题
|
||||
- **BasicTable** 修复可编辑单元格的内容为空时,不会显示编辑图标的问题
|
||||
- **其它**
|
||||
- 修复部分封装组件在使用插槽时报错的问题
|
||||
- 修复`useECharts`的`theme`参数不起作用的问题
|
||||
|
@ -6,7 +6,7 @@
|
||||
@click="handleEdit"
|
||||
>
|
||||
<div class="cell-content" :title="column.ellipsis ? getValues ?? '' : ''">{{
|
||||
getValues ?? ' '
|
||||
getValues ? getValues : ' '
|
||||
}}</div>
|
||||
<FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" />
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user