add feedback button, open report issue dialog (#15762)

This commit is contained in:
brian-harris
2021-06-18 12:22:41 -07:00
committed by GitHub
parent aeda95bb70
commit d08182416b
6 changed files with 29 additions and 3 deletions

View File

@@ -33,6 +33,7 @@ export class IconPathHelper {
public static error: IconPath;
public static completingCutover: IconPath;
public static migrationService: IconPath;
public static sendFeedback: IconPath;
public static setExtensionContext(context: vscode.ExtensionContext) {
IconPathHelper.copy = {
@@ -123,5 +124,9 @@ export class IconPathHelper {
light: context.asAbsolutePath('images/migrationService.svg'),
dark: context.asAbsolutePath('images/migrationService.svg')
};
IconPathHelper.sendFeedback = {
light: context.asAbsolutePath('images/sendFeedback.svg'),
dark: context.asAbsolutePath('images/sendFeedback.svg')
};
}
}