We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e7ca1b commit 48dbb57Copy full SHA for 48dbb57
packages/app/src/app/overmind/effects/vscode/ModelsHandler.ts
@@ -129,7 +129,9 @@ export class ModelsHandler {
129
}
130
131
public updateLineCommentIndication(model: any, lineNumber: number) {
132
- const moduleModel = this.moduleModels[model.uri.path];
+ const moduleModel =
133
+ this.moduleModels[model.uri.path] ||
134
+ this.getModuleModelByPath(model.uri.path.replace('/sandbox', ''));
135
136
moduleModel.currentLine = lineNumber;
137
0 commit comments