mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #3967 - DataTable:When using ColumnGroup in a table with more than two frozen columns
This commit is contained in:
parent
01b38bf5ae
commit
8db6f9c180
1 changed files with 4 additions and 2 deletions
|
@ -294,8 +294,10 @@ export default {
|
|||
if (filterRow) {
|
||||
let index = DomHandler.index(this.$el);
|
||||
|
||||
filterRow.children[index].style.left = this.styleObject.left;
|
||||
filterRow.children[index].style.right = this.styleObject.right;
|
||||
if (filterRow.children[index]) {
|
||||
filterRow.children[index].style.left = this.styleObject.left;
|
||||
filterRow.children[index].style.right = this.styleObject.right;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue