Fix bug minimizing a maximized result grid (#4007)

This commit is contained in:
Matt Irvine
2019-02-11 21:51:06 -08:00
committed by Karl Burtram
parent 5f198dba08
commit c91c4b01f9
3 changed files with 17 additions and 7 deletions

View File

@@ -194,7 +194,7 @@ export class GridPanel extends ViewletPanel {
p = p.concat(e.resultSetSummaries.filter(c => c.complete));
}
return p;
}, []).reverse());
}, []));
this.maximumBodySize = this.tables.reduce((p, c) => {
return p + c.maximumSize;
}, 0);