Updated Fix for Deployment defaulting to first item when filter filters out all items (#12876)

* Fix where update table is not called

* Clearing table when no resource is selected
This commit is contained in:
Aasim Khan
2020-10-12 11:53:28 -07:00
committed by GitHub
parent 82726a9119
commit f61ffae15c

View File

@@ -266,7 +266,9 @@ export class ResourceTypePickerDialog extends DialogBase {
this._agreementCheckboxChecked = false; this._agreementCheckboxChecked = false;
this._agreementContainer.clearItems(); this._agreementContainer.clearItems();
this._optionsContainer.clearItems(); this._optionsContainer.clearItems();
this.updateToolsDisplayTable(); this._toolsLoadingComponent.loading = false;
this._toolsTable.data = [[]];
this._tools = [];
this._dialogObject.okButton.enabled = false; this._dialogObject.okButton.enabled = false;
} }
} }