mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
wipe status message only when not installing (#9192)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user