mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
reverse data array on repopulation (#3907)
This commit is contained in:
committed by
Karl Burtram
parent
42135d3e53
commit
07c7eea2df
@@ -194,7 +194,7 @@ export class GridPanel extends ViewletPanel {
|
|||||||
p = p.concat(e.resultSetSummaries.filter(c => c.complete));
|
p = p.concat(e.resultSetSummaries.filter(c => c.complete));
|
||||||
}
|
}
|
||||||
return p;
|
return p;
|
||||||
}, []));
|
}, []).reverse());
|
||||||
this.maximumBodySize = this.tables.reduce((p, c) => {
|
this.maximumBodySize = this.tables.reduce((p, c) => {
|
||||||
return p + c.maximumSize;
|
return p + c.maximumSize;
|
||||||
}, 0);
|
}, 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user