Fixed #3967 - DataTable:When using ColumnGroup in a table with more than two frozen columns

pull/4987/head
mertsincan 2023-12-19 15:12:31 +00:00
parent 01b38bf5ae
commit 8db6f9c180
1 changed files with 4 additions and 2 deletions

View File

@ -294,8 +294,10 @@ export default {
if (filterRow) { if (filterRow) {
let index = DomHandler.index(this.$el); let index = DomHandler.index(this.$el);
filterRow.children[index].style.left = this.styleObject.left; if (filterRow.children[index]) {
filterRow.children[index].style.right = this.styleObject.right; filterRow.children[index].style.left = this.styleObject.left;
filterRow.children[index].style.right = this.styleObject.right;
}
} }
} }
}, },