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 5a0df17 commit 0995180Copy full SHA for 0995180
packages/app/src/app/overmind/namespaces/editor/models/EditorSandbox.ts
@@ -71,8 +71,8 @@ export class EditorSandbox {
71
private changedModuleShortids: string[] = [];
72
public errors: ModuleError[];
73
public corrections: ModuleCorrection[];
74
- private getModuleParents(modules, directories, id): string[] {
75
- const module = modules.find(moduleEntry => moduleEntry.id === id);
+ private getModuleParents(modules, directories, shortid): string[] {
+ const module = modules.find(moduleEntry => moduleEntry.shortid === shortid);
76
77
if (!module) return [];
78
0 commit comments