Migraiton enhancements v: 0.1.1 (#15570)

* adding filters and cards for failed migrations

* Added card and filter for completing cutover

* Fixing blob container support and some ux enhancements

* Enabling eastus2 and canada central regions

* Increasing height of container to accomodate newer cards and cleaning up database backup page

* vbump migration

* Removing unused code
This commit is contained in:
Aasim Khan
2021-05-25 18:00:30 -07:00
committed by GitHub
parent 730367494b
commit e49dd12951
16 changed files with 561 additions and 309 deletions

View File

@@ -30,6 +30,8 @@ export class IconPathHelper {
public static cancel: IconPath;
public static warning: IconPath;
public static info: IconPath;
public static error: IconPath;
public static completingCutover: IconPath;
public static setExtensionContext(context: vscode.ExtensionContext) {
IconPathHelper.copy = {
@@ -108,5 +110,13 @@ export class IconPathHelper {
light: context.asAbsolutePath('images/info.svg'),
dark: context.asAbsolutePath('images/infoBox.svg')
};
IconPathHelper.error = {
light: context.asAbsolutePath('images/error.svg'),
dark: context.asAbsolutePath('images/error.svg')
};
IconPathHelper.completingCutover = {
light: context.asAbsolutePath('images/completingCutover.svg'),
dark: context.asAbsolutePath('images/completingCutover.svg')
};
}
}