mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-01 09:35:41 -05:00
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:
@@ -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')
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user