mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 09:35:38 -05:00
Fixed the bug with refreshing the page over and over (#13966)
This commit is contained in:
@@ -206,8 +206,10 @@ export class CurrentModelsComponent extends ModelViewBase implements IPageView {
|
||||
|
||||
private async onTableSelected(): Promise<void> {
|
||||
if (this._tableSelectionComponent?.data) {
|
||||
this.importTable = this._tableSelectionComponent?.data;
|
||||
await this.storeImportConfigTable();
|
||||
if (this._tableSelectionComponent?.isDataValid) {
|
||||
this.importTable = this._tableSelectionComponent?.data;
|
||||
await this.storeImportConfigTable();
|
||||
}
|
||||
if (this._dataTable) {
|
||||
await this._dataTable.refresh();
|
||||
if (this._emptyModelsComponent) {
|
||||
|
||||
Reference in New Issue
Block a user