Fixing next button on flat file wizard file configuration page (#15988)

* WIP

* Removing unnecessary validations from import extension

* readding abstract method implementation

* Moving setup navigation validator to base class
This commit is contained in:
Aasim Khan
2021-07-06 16:53:44 -07:00
committed by GitHub
parent 48b7d96999
commit 7c68506975
7 changed files with 36 additions and 46 deletions

View File

@@ -113,7 +113,7 @@ export default class DropDownComponent extends ComponentBase<azdata.DropDownProp
}));
this._validations.push(() => !this.required || this.editable || !!this._selectBox.value);
}
this._validations.push(() => !this.loading);
this.baseInit();
}