mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
@@ -195,6 +195,7 @@ export function createViewContext(): ViewTestContext {
|
||||
data: [] as any[][],
|
||||
columns: [] as string[],
|
||||
onRowSelected: onClick.event,
|
||||
appendData: (data: any[][]) => undefined,
|
||||
});
|
||||
|
||||
let loadingComponent: () => azdata.LoadingComponent = () => Object.assign({}, componentBase, {
|
||||
|
||||
@@ -121,10 +121,7 @@ export class AssessmentResultGrid implements vscode.Disposable {
|
||||
if (this.dataItems) {
|
||||
this.dataItems.push(...asmtResult.items);
|
||||
}
|
||||
|
||||
await this.table.updateProperties({
|
||||
'data': this.dataItems.map(item => this.convertToDataView(item))
|
||||
});
|
||||
this.table.appendData(asmtResult.items.map(item => this.convertToDataView(item)));
|
||||
}
|
||||
|
||||
private async showDetails(rowNumber: number) {
|
||||
|
||||
Reference in New Issue
Block a user