Add message when no history exists on projects dashboard (#15002)

* Add message when no history exists on projects dashboard

* Bump version for sql db projects

* Update text, add refresh button

* Remove commented code
This commit is contained in:
Sakshi Sharma
2021-04-07 00:42:11 -07:00
committed by GitHub
parent 9035914d5d
commit addef2d584
5 changed files with 89 additions and 54 deletions

View File

@@ -13,11 +13,13 @@ export interface IconPath {
export class IconPathHelper {
private static extensionContext: vscode.ExtensionContext;
public static folder: IconPath;
public static refresh: IconPath;
public static setExtensionContext(extensionContext: vscode.ExtensionContext) {
IconPathHelper.extensionContext = extensionContext;
IconPathHelper.folder = IconPathHelper.makeIcon('folder', true);
IconPathHelper.refresh = IconPathHelper.makeIcon('refresh', true);
}
private static makeIcon(name: string, sameIcon: boolean = false) {