@acorex/core 6.5.55 → 6.5.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2020/acorex-core.mjs
CHANGED
|
@@ -2083,8 +2083,8 @@ class AXRenderService {
|
|
|
2083
2083
|
if (route.path === search && route.component) {
|
|
2084
2084
|
found = route;
|
|
2085
2085
|
}
|
|
2086
|
-
else if (route['_loadedConfig'] || route.children) {
|
|
2087
|
-
f(route.children || route['_loadedConfig'].routes, route.path);
|
|
2086
|
+
else if (route['_loadedConfig'] || route['_loadedRoutes'] || route.children) {
|
|
2087
|
+
f(route.children || route['_loadedRoutes'] || route['_loadedConfig'].routes, route.path);
|
|
2088
2088
|
}
|
|
2089
2089
|
if (found)
|
|
2090
2090
|
break;
|