Skip to content

Commit

Permalink
fix(table): value show problem in editable cell
Browse files Browse the repository at this point in the history
修复可编辑单元格的值不能直接通过修改dataSource来更新显示的问题。

fixed: #922
  • Loading branch information
mynetfan committed Jul 16, 2021
1 parent d9d0071 commit 61ce25b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- 修复树形表格的带有展开图标的单元格的内容对齐问题
- 新增`headerTop`插槽
- 修复操作列的按钮在 disabled 状态下的颜色显示
- 修复可编辑单元格的值不能直接通过修改`dataSource`来更新显示的问题
- **TableAction**
- 仅在 `action.tooltip`存在的情况下 才创建 Tooltip 组件
- 修复组件内的圆形按钮内容没有居中的问题
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@
watchEffect(() => {
defaultValueRef.value = props.value;
currentValueRef.value = props.value;
});
watchEffect(() => {
Expand Down

0 comments on commit 61ce25b

Please sign in to comment.