workaround issue with resizable columns

This commit is contained in:
Harald Bamberger
2022-08-19 12:38:29 +02:00
parent b0ffbea9a5
commit 238810b5a8
+4
View File
@@ -99,6 +99,10 @@ export const CoreFilterCmpt = {
{
// If the column has to be displayed or not
selectedFields.indexOf(columns[i].field) >= 0 ? columns[i].visible = true : columns[i].visible = false;
if( columns[i].hasOwnProperty('resizable') ) {
columns[i].visible ? columns[i].resizable = true : columns[i].resizable = false;
}
}
}