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:
stuti149
2021-08-10 12:31:16 +05:30
committed by GitHub
parent a5a9250ae1
commit a032426ac0
4 changed files with 78 additions and 1 deletions

View File

@@ -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')
};
}
}