We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb6c692 commit d800e1fCopy full SHA for d800e1f
packages/style/ve-table.less
@@ -79,10 +79,7 @@
79
}
80
81
tr.ve-table-expand-tr {
82
- display: none;
83
- &.ve-table-expand-tr-show {
84
- display: table-row;
85
- }
+ display: table-row;
86
87
88
// 斑马纹
packages/ve-table/src/body/expand-tr.jsx
@@ -79,8 +79,7 @@ export default {
// expand row class
expanRowClass() {
let result = {
- [clsName("expand-tr")]: true,
- [clsName("expand-tr-show")]: this.isRowExpanded
+ [clsName("expand-tr")]: true
};
return result;
},
0 commit comments