mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 01:25:38 -05:00
Surfacing migration errors in dashboard (#14956)
* vbumping migration * Adding 2 new icons cancel and warning * Fixed help link display text in assessments * Adding summary page redesign and resource name validations * Made headings bold * Fixed sku recommendation page styling Added check item for assessment * Validating account dropdown after token refresh * Renamed cutover to mode * cutover to mode renaming changes. * Converting to details api for more warnings * Added target database name and fixed cancel icon * Surfacing warning info in dashboard. * Consolidated fetch migrations logic Localilzed some strings Surface migration errors in dashboard and status page Table redesign in status dialog Fixed a major bug that happens when multiple dashboards are opened due to class variable sharing * removing console count * Fixing regex for SQL MI database names * Allowing spaces in regex
This commit is contained in:
@@ -27,6 +27,8 @@ export class IconPathHelper {
|
||||
public static sqlServerLogo: IconPath;
|
||||
public static sqlDatabaseLogo: IconPath;
|
||||
public static sqlDatabaseWarningLogo: IconPath;
|
||||
public static cancel: IconPath;
|
||||
public static warning: IconPath;
|
||||
|
||||
public static setExtensionContext(context: vscode.ExtensionContext) {
|
||||
IconPathHelper.copy = {
|
||||
@@ -93,5 +95,13 @@ export class IconPathHelper {
|
||||
light: context.asAbsolutePath('images/sqlDatabaseWarning.svg'),
|
||||
dark: context.asAbsolutePath('images/sqlDatabaseWarning.svg')
|
||||
};
|
||||
IconPathHelper.cancel = {
|
||||
light: context.asAbsolutePath('images/cancel.svg'),
|
||||
dark: context.asAbsolutePath('images/cancel.svg')
|
||||
};
|
||||
IconPathHelper.warning = {
|
||||
light: context.asAbsolutePath('images/warning.svg'),
|
||||
dark: context.asAbsolutePath('images/warning.svg')
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user