Skip to content

Commit c607b70

Browse files
committed
set more accurate initial value for wasUncoalesced
1 parent a1f606c commit c607b70

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

packages/iris-grid/src/IrisGridTableModel.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,13 @@ class IrisGridTableModel
5050
dh: typeof DhType,
5151
table: DhType.Table,
5252
formatter = new Formatter(dh),
53-
inputTable: DhType.InputTable | null = null,
54-
wasUncoalesced = table.isUncoalesced
53+
inputTable: DhType.InputTable | null = null
5554
) {
5655
super(dh, table, formatter, inputTable);
5756
this.customColumnList = [];
5857
this.formatColumnList = [];
5958
this.initialFilters = table.filter;
60-
this.wasUncoalesced = wasUncoalesced;
59+
this.wasUncoalesced = this.isPartitionRequired;
6160
}
6261

6362
get isExportAvailable(): boolean {

0 commit comments

Comments
 (0)