Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Jul 15, 2019
1 parent 670788a commit c5af2d8
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -145,14 +145,14 @@ class Extension implements IExtension {
if (this.type === ExtensionType.System && this.local) {
if (this.local.manifest && this.local.manifest.contributes) {
if (Array.isArray(this.local.manifest.contributes.themes) && this.local.manifest.contributes.themes.length) {
return require.toUrl('../electron-browser/media/theme-icon.png');
return require.toUrl('../browser/media/theme-icon.png');
}
if (Array.isArray(this.local.manifest.contributes.grammars) && this.local.manifest.contributes.grammars.length) {
return require.toUrl('../electron-browser/media/language-icon.svg');
return require.toUrl('../browser/media/language-icon.svg');
}
}
}
return require.toUrl('../electron-browser/media/defaultIcon.png');
return require.toUrl('../browser/media/defaultIcon.png');
}

get repository(): string | undefined {
Expand Down

0 comments on commit c5af2d8

Please sign in to comment.