提交 1e61da64 编写于 作者: 无木

fix(table): fix tree node align

修复树形表格的带有展开图标的单元格的内容对齐问题

fixed: #829
上级 9228282a
### 🐛 Bug Fixes
- **Table** 修复滚动条样式问题
- **Table**
- 修复滚动条样式问题
- 修复树形表格的带有展开图标的单元格的内容对齐问题
- **AppSearch** 修复可能会搜索隐藏菜单的问题
- **其它** 修复菜单默认折叠的配置不起作用的问题
......
......@@ -3,11 +3,11 @@ import { BasicArrow } from '/@/components/Basic';
export default () => {
return (props: Recordable) => {
if (!props.expandable) {
return <span />;
return <span class="ant-table-row-expand-icon ant-table-row-spaced" />;
}
return (
<BasicArrow
class="mr-1"
style="margin-right: 8px"
iconStyle="margin-top: -2px;"
onClick={(e: Event) => {
props.onExpand(props.record, e);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册