Replace remote icon with cloud

This commit is contained in:
Nora
2023-01-25 09:55:53 +00:00
parent 407aa14d4d
commit 1ec39053cb
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ export function createDbTreeViewItemRepo(
): DbTreeViewItem {
return new DbTreeViewItem(
dbItem,
new vscode.ThemeIcon("database"),
new vscode.ThemeIcon("cloud"),
repoName,
undefined,
vscode.TreeItemCollapsibleState.None,

View File

@@ -340,7 +340,7 @@ describe("db panel rendering nodes", () => {
function checkRemoteRepoItem(item: DbTreeViewItem, repoName: string): void {
expect(item.label).toBe(repoName);
expect(item.tooltip).toBeUndefined();
expect(item.iconPath).toEqual(new ThemeIcon("database"));
expect(item.iconPath).toEqual(new ThemeIcon("cloud"));
expect(item.collapsibleState).toBe(TreeItemCollapsibleState.None);
checkDbItemActions(item, [
"canBeSelected",