Skip to content

Commit 7f7ed5e

Browse files
authored
Fix the paths of Azure icons (#658)
* Fix the paths of Azure icons * Revert package.json
1 parent f33ba5b commit 7f7ed5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/azureUtils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ export function createAzureExtensionsGroupConfig(extensions: IAzExtMetadata[], s
7272

7373
export function getIconPath(azExtResourceType?: AzExtResourceType): TreeItemIconPath {
7474
return treeUtils.getIconPath(azExtResourceType ?
75-
Utils.joinPath(URI.parse('azureIcons'), azExtResourceType).fsPath :
76-
URI.parse('resource').fsPath);
75+
Utils.joinPath(URI.file('azureIcons'), azExtResourceType).path :
76+
URI.file('resource').path);
7777
}
7878

7979
export function getName(azExtResourceType?: AzExtResourceType): string | undefined {

0 commit comments

Comments
 (0)