mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-02 01:25:39 -05:00
Add new tabbed dashboard, monitoring with breadcrumb navigation (#19995)
* SQL DB monitoring and Dashboard refactor * Merge remote-tracking branch 'origin/main' into dev/brih/feature/sql-migration-dashboard-tabs * update filter text and optimize page load * update migration column order, names and statusbox * add column table sorting * add new migration and pipeline status values, etc * address review feedback
This commit is contained in:
@@ -45,6 +45,9 @@ export class IconPathHelper {
|
||||
public static stop: IconPath;
|
||||
public static view: IconPath;
|
||||
public static sqlMigrationService: IconPath;
|
||||
public static addNew: IconPath;
|
||||
public static breadCrumb: IconPath;
|
||||
public static allTables: IconPath;
|
||||
|
||||
public static setExtensionContext(context: vscode.ExtensionContext) {
|
||||
IconPathHelper.copy = {
|
||||
@@ -183,5 +186,17 @@ export class IconPathHelper {
|
||||
light: context.asAbsolutePath('images/sqlMigrationService.svg'),
|
||||
dark: context.asAbsolutePath('images/sqlMigrationService.svg'),
|
||||
};
|
||||
IconPathHelper.addNew = {
|
||||
light: context.asAbsolutePath('images/addNew.svg'),
|
||||
dark: context.asAbsolutePath('images/addNew.svg'),
|
||||
};
|
||||
IconPathHelper.breadCrumb = {
|
||||
light: context.asAbsolutePath('images/breadCrumb.svg'),
|
||||
dark: context.asAbsolutePath('images/breadCrumb.svg'),
|
||||
};
|
||||
IconPathHelper.allTables = {
|
||||
light: context.asAbsolutePath('images/allTables.svg'),
|
||||
dark: context.asAbsolutePath('images/allTables.svg'),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user