mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add tool path column to the deployment tools table (#8597)
* remove redundan console.warn messages * add tool path, trim existing columns in tools table * Update dockerTool.ts
This commit is contained in:
@@ -138,7 +138,7 @@ export abstract class ToolBase implements ITool {
|
||||
return this._statusDescription;
|
||||
}
|
||||
|
||||
public get installationPath(): string {
|
||||
public get installationPath(): string | undefined {
|
||||
return this._installationPath;
|
||||
}
|
||||
|
||||
@@ -300,5 +300,5 @@ export abstract class ToolBase implements ITool {
|
||||
private _status: ToolStatus = ToolStatus.NotInstalled;
|
||||
private _version?: SemVer;
|
||||
private _statusDescription?: string;
|
||||
private _installationPath!: string;
|
||||
private _installationPath?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user