forked from verdnatura/salix-front
warmFix: orderBy tableActions false
This commit is contained in:
parent
a421c96e85
commit
db3813ccf0
|
@ -171,7 +171,10 @@ function splitColumns(columns) {
|
||||||
};
|
};
|
||||||
|
|
||||||
for (const col of columns) {
|
for (const col of columns) {
|
||||||
if (col.name == 'tableActions') splittedColumns.value.actions = col;
|
if (col.name == 'tableActions') {
|
||||||
|
col.orderBy = false;
|
||||||
|
splittedColumns.value.actions = col;
|
||||||
|
}
|
||||||
if (col.chip) splittedColumns.value.chips.push(col);
|
if (col.chip) splittedColumns.value.chips.push(col);
|
||||||
if (col.isTitle) splittedColumns.value.title = col;
|
if (col.isTitle) splittedColumns.value.title = col;
|
||||||
if (col.create) splittedColumns.value.create.push(col);
|
if (col.create) splittedColumns.value.create.push(col);
|
||||||
|
|
Loading…
Reference in New Issue