wipe status message only when not installing (#9192)

This commit is contained in:
Arvind Ranasaria
2020-02-18 15:16:54 -08:00
committed by GitHub
parent 47e716d3b2
commit d69cda80c3

View File

@@ -199,9 +199,11 @@ export class ResourceTypePickerDialog extends DialogBase {
const currentRefreshTimestamp = this.toolRefreshTimestamp;
const headerRowHeight = 28;
this._toolsTable.height = 25 * Math.max(this.toolRequirements.length, 1) + headerRowHeight;
this._dialogObject.message = {
text: ''
};
if (!this._installationInProgress) { // Wipe the informational message clean unless installation is already in progress.
this._dialogObject.message = {
text: ''
};
}
this._installToolButton.hidden = true;
if (this.toolRequirements.length === 0) {
this._dialogObject.okButton.enabled = true;