diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index e27c5c79a0dc21c956089ed25c201b817cf3a273..62753c643312ed41438c7598ef54a5dc470da04b 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -4,7 +4,9 @@ - **BasicTable** 修复可编辑单元格不支持`ellipsis`配置的问题 - **ImgRotateDragVerify** 修复组件`resume`方法无法调用的问题 - **TableAction** 修复 stopButtonPropagation 属性某些情况下不起作用的问题 -- **BasicTable** 修复全屏模式下看不到子组件弹出层(popconfirm 以及 select、treeSelect 等编辑组件)的问题 +- **BasicTable** + - 修复全屏模式下看不到子组件弹出层(popconfirm 以及 select、treeSelect 等编辑组件)的问题 + - 修复启用`expandRowByClick`时,点击不可展开的行可能会导致样式错误的问题 - **Dark Theme** 黑暗主题下的配色问题修正 - 修复`Tree`组件被选中节点的背景颜色 - 修复`Alert`组件的颜色配置 diff --git a/src/components/Table/src/components/ExpandIcon.tsx b/src/components/Table/src/components/ExpandIcon.tsx index 2b31ee50d5a5a88466b9f163756be48e887d1cd0..3d1d98d96cd76b903a0b02f0b6d60a5c4e110fec 100644 --- a/src/components/Table/src/components/ExpandIcon.tsx +++ b/src/components/Table/src/components/ExpandIcon.tsx @@ -3,7 +3,7 @@ import { BasicArrow } from '/@/components/Basic'; export default () => { return (props: Recordable) => { if (!props.expandable) { - if (props.expanded) { + if (props.needIndentSpaced) { return ; } else { return ;