Add loading text properties for option sources (#13743)

* Add loading text to deployment radio options

* Fix loading race condition

* Update text
This commit is contained in:
Charles Gagnon
2020-12-09 18:32:05 -08:00
committed by GitHub
parent 147ee53e35
commit dc8788b77f
5 changed files with 21 additions and 4 deletions

View File

@@ -1660,8 +1660,9 @@ class ButtonWrapper extends ComponentWithIconWrapper implements azdata.ButtonCom
class LoadingComponentWrapper extends ComponentWrapper implements azdata.LoadingComponent {
constructor(proxy: MainThreadModelViewShape, handle: number, id: string) {
super(proxy, handle, ModelComponentTypes.LoadingComponent, id);
this.properties = {};
this.loading = true;
this.properties = {
loading: true
};
}
public get loading(): boolean {