Skip to content

Commit a426b90

Browse files
committed
fix(table): fix table footer style
修复表尾合计行可能与主体部分的列没有对齐的问题 fixed: #1112
1 parent 455d109 commit a426b90

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.zh_CN.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77

88
- **CodeEditor** 修复 JSON 编辑器在格式化无效 JSON 文本时会抛出异常的问题
99
- **Tinymce** 修复 inline 模式在一些场景下会出现异常的问题
10-
- **BasicTable** 修复可编辑单元格的内容为空时,不会显示编辑图标的问题
10+
- **BasicTable**
11+
- 修复可编辑单元格的内容为空时,不会显示编辑图标的问题
12+
- 修复表尾合计行与表格主体部分的列有时候未能对齐的问题
1113
- **其它**
1214
- 修复部分封装组件在使用插槽时报错的问题
1315
- 修复`useECharts``theme`参数不起作用的问题

src/components/Table/src/BasicTable.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@
413413
414414
.ant-table-body {
415415
overflow-x: hidden !important;
416-
overflow-y: scroll !important;
416+
// overflow-y: scroll !important;
417417
}
418418
419419
td {

0 commit comments

Comments
 (0)