Make loading components not valid and improve RD radio group (#13738)

This commit is contained in:
Charles Gagnon
2020-12-09 13:15:35 -08:00
committed by GitHub
parent 91522caa67
commit e7884b8b61
2 changed files with 21 additions and 8 deletions

View File

@@ -42,6 +42,9 @@ export default class LoadingComponent extends ComponentBase<azdata.LoadingCompon
if (!this._component) {
return true;
}
if (this.loading) {
return false;
}
return this.modelStore.getComponent(this._component.id).validate();
});
}