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 7c6bbfc commit 0ebb5caCopy full SHA for 0ebb5ca
src/componentManager.ts
@@ -147,8 +147,10 @@ export class ComponentManager {
147
else {
148
const loadChildrenMatch = this.loadChildrenRegex.exec(routesBodyPart);
149
if (loadChildrenMatch !== null) {
150
- const moduleName = loadChildrenMatch[1];
151
- console.log(`${moduleComponent.name} routing to module ${moduleName}`);
+ // TODO: Add logic for adding relations to the components referenced by the module reference
+
152
+ // const moduleName = loadChildrenMatch[1];
153
+ // console.log(`${moduleComponent.name} routing to module ${moduleName}`);
154
}
155
156
const childrenMatch = this.childrenRegex.exec(routesBodyPart);
0 commit comments