Skip to content

Commit ea2412a

Browse files
authored
Adding missing . on line 815 following Logan's feedback
1 parent a985951 commit ea2412a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/tags/electron-sandbox/workspaceTagsService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ export class WorkspaceTagsService implements IWorkspaceTagsService {
814814
if (firstRequireBlockFound && line !== '') {
815815
const packageName: string = line.split(' ')[0].trim();
816816
if (GoModulesToLookFor.indexOf(packageName) > -1) {
817-
tags['workspace.go.mod' + packageName] = true;
817+
tags['workspace.go.mod.' + packageName] = true;
818818
}
819819
}
820820
}

0 commit comments

Comments
 (0)