Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Mar 2, 2019
1 parent e4b70bc commit 4585f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/browser/labels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ class ResourceLabelWidget extends IconLabel {
}

if (this.label) {
const configuredLangId = this.label.resource ? getConfiguredLangId(this.modelService, this.label.resource) : null;
const configuredLangId = this.label.resource ? getConfiguredLangId(this.modelService, this.modeService, this.label.resource) : null;
if (this.lastKnownConfiguredLangId !== configuredLangId) {
clearIconCache = true;
this.lastKnownConfiguredLangId = configuredLangId || undefined;
Expand Down

0 comments on commit 4585f69

Please sign in to comment.