Fix ModelView container validation ordering (#13386)

* Fix ModelView container validation ordering

* Also validate component after adding

* undo child component validate call
This commit is contained in:
Charles Gagnon
2020-11-12 17:17:27 -08:00
committed by GitHub
parent ea7fe08b98
commit 536628603e

View File

@@ -308,7 +308,7 @@ export abstract class ContainerBase<T, TPropertyBag extends azdata.ComponentProp
if (event.eventType === ComponentEventType.validityChanged) {
this.validate();
}
}), false);
}), true);
this._changeRef.detectChanges();
this.onItemsUpdated();
return;