ecinc-cloud-wappaio 9.6.441 → 9.6.442
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/lib/ecwappaio.common.js
CHANGED
|
@@ -10378,7 +10378,7 @@ function loadWappRoutes(accessedRoutes, wappRoutes) {
|
|
|
10378
10378
|
} else if (route.meta && route.meta.href && (route.meta.href.indexOf('@/') === 0 || route.meta.href.indexOf('#/dcontent') === 0)) {
|
|
10379
10379
|
route.component = window.$loadComponent(route.meta.href);
|
|
10380
10380
|
}
|
|
10381
|
-
if (route.meta.level > 1) {
|
|
10381
|
+
if (!route.meta || route.meta.level > 1) {
|
|
10382
10382
|
accessedRoutes.push(route);
|
|
10383
10383
|
}
|
|
10384
10384
|
if (route.children !== undefined && route.children !== null) {
|
package/lib/ecwappaio.umd.js
CHANGED
|
@@ -10388,7 +10388,7 @@ function loadWappRoutes(accessedRoutes, wappRoutes) {
|
|
|
10388
10388
|
} else if (route.meta && route.meta.href && (route.meta.href.indexOf('@/') === 0 || route.meta.href.indexOf('#/dcontent') === 0)) {
|
|
10389
10389
|
route.component = window.$loadComponent(route.meta.href);
|
|
10390
10390
|
}
|
|
10391
|
-
if (route.meta.level > 1) {
|
|
10391
|
+
if (!route.meta || route.meta.level > 1) {
|
|
10392
10392
|
accessedRoutes.push(route);
|
|
10393
10393
|
}
|
|
10394
10394
|
if (route.children !== undefined && route.children !== null) {
|