mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 10:58:31 -05:00
sqlAssessment sync display fix (#14574)
* sqlAssessment sync display fix * making append data Thenable<void>
This commit is contained in:
@@ -159,8 +159,9 @@ export class AssessmentResultGrid implements vscode.Disposable {
|
||||
let filteredValues = this.filterOutNotSupportedKind(asmtResult.items);
|
||||
if (this.dataItems) {
|
||||
this.dataItems.push(...filteredValues);
|
||||
|
||||
}
|
||||
this.table.appendData(filteredValues.map(item => this.convertToDataView(item)));
|
||||
await this.table.appendData(filteredValues.map(item => this.convertToDataView(item)));
|
||||
}
|
||||
|
||||
private async showDetails(rowNumber: number) {
|
||||
|
||||
Reference in New Issue
Block a user