Show image with "Add Account" message if user hasn't signed in - Migration Status Dialog (#16932)

This commit is contained in:
goyal-anjali
2021-09-01 22:31:21 +05:30
committed by GitHub
parent 45e251c0d6
commit 34b5a983c0
4 changed files with 78 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ export class IconPathHelper {
public static expandButtonOpen: IconPath;
public static newSupportRequest: IconPath;
public static emptyTable: IconPath;
public static addAzureAccount: IconPath;
public static setExtensionContext(context: vscode.ExtensionContext) {
IconPathHelper.copy = {
@@ -148,5 +149,9 @@ export class IconPathHelper {
light: context.asAbsolutePath('images/emptyTable.svg'),
dark: context.asAbsolutePath('images/emptyTable.svg')
};
IconPathHelper.addAzureAccount = {
light: context.asAbsolutePath('images/noAzureAccount.svg'),
dark: context.asAbsolutePath('images/noAzureAccount.svg')
};
}
}