Table: calc layout after row expansion changes (#9848)

pull/9892/merge
杨奕 2018-02-26 16:13:33 +08:00 committed by cinwell.li
parent 061130e1c7
commit da2c87a03d
1 changed files with 1 additions and 0 deletions

View File

@ -399,6 +399,7 @@ TableStore.prototype.toggleRowExpansion = function(row, expanded) {
const changed = toggleRowExpansion(this.states, row, expanded);
if (changed) {
this.table.$emit('expand-change', row, this.states.expandRows);
this.scheduleLayout();
}
};