This commit is contained in:
Jan Prochazka
2021-01-23 07:24:46 +01:00
parent 451af5d09f
commit b9cb8c3a45
22 changed files with 127 additions and 129 deletions

View File

@@ -16,7 +16,7 @@ export class JslGridDisplay extends GridDisplay {
this.filterable = true;
this.columns = columns
.map((col) => ({
.map(col => ({
columnName: col.columnName,
headerText: col.columnName,
uniqueName: col.columnName,
@@ -26,7 +26,7 @@ export class JslGridDisplay extends GridDisplay {
pureName: null,
schemaName: null,
}))
?.map((col) => ({
?.map(col => ({
...col,
isChecked: this.isColumnChecked(col),
}));