parent
9228282ae2
commit
1e61da644f
|
|
@ -1,6 +1,8 @@
|
||||||
### 🐛 Bug Fixes
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
- **Table** 修复滚动条样式问题
|
- **Table**
|
||||||
|
- 修复滚动条样式问题
|
||||||
|
- 修复树形表格的带有展开图标的单元格的内容对齐问题
|
||||||
- **AppSearch** 修复可能会搜索隐藏菜单的问题
|
- **AppSearch** 修复可能会搜索隐藏菜单的问题
|
||||||
- **其它** 修复菜单默认折叠的配置不起作用的问题
|
- **其它** 修复菜单默认折叠的配置不起作用的问题
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@ import { BasicArrow } from '/@/components/Basic';
|
||||||
export default () => {
|
export default () => {
|
||||||
return (props: Recordable) => {
|
return (props: Recordable) => {
|
||||||
if (!props.expandable) {
|
if (!props.expandable) {
|
||||||
return <span />;
|
return <span class="ant-table-row-expand-icon ant-table-row-spaced" />;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<BasicArrow
|
<BasicArrow
|
||||||
class="mr-1"
|
style="margin-right: 8px"
|
||||||
iconStyle="margin-top: -2px;"
|
iconStyle="margin-top: -2px;"
|
||||||
onClick={(e: Event) => {
|
onClick={(e: Event) => {
|
||||||
props.onExpand(props.record, e);
|
props.onExpand(props.record, e);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue