mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-04 01:25:38 -05:00
Database Migration Details: Empty table should have a status saying 'no backup files' (#16618)
* empty table shows no backup file image * string displayed modified and empty table text will only be displayed after checking function _shouldDisplayBackupFileTable * format fix * format changes * format fix
This commit is contained in:
@@ -37,6 +37,7 @@ export class IconPathHelper {
|
||||
public static expandButtonClosed: IconPath;
|
||||
public static expandButtonOpen: IconPath;
|
||||
public static newSupportRequest: IconPath;
|
||||
public static emptyTable: IconPath;
|
||||
|
||||
public static setExtensionContext(context: vscode.ExtensionContext) {
|
||||
IconPathHelper.copy = {
|
||||
@@ -143,5 +144,9 @@ export class IconPathHelper {
|
||||
light: context.asAbsolutePath('images/newSupportRequest.svg'),
|
||||
dark: context.asAbsolutePath('images/newSupportRequest.svg')
|
||||
};
|
||||
IconPathHelper.emptyTable = {
|
||||
light: context.asAbsolutePath('images/emptyTable.svg'),
|
||||
dark: context.asAbsolutePath('images/emptyTable.svg')
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user