zet-lib 1.0.13 → 1.0.15

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.
Files changed (3) hide show
  1. package/lib/zRole.js +1 -1
  2. package/lib/zRoute.js +2755 -2753
  3. package/package.json +1 -1
package/lib/zRole.js CHANGED
@@ -230,7 +230,7 @@ a.childrenMenu = (res, arr) => {
230
230
  obj = a.addItemMenu(item);
231
231
  if (item.hasOwnProperty("children") && item.children.length) {
232
232
  let child = [];
233
- child.push(a.children(res, item.children));
233
+ child.push(a.childrenMenu(res, item.children));
234
234
  if (child[0]) {
235
235
  obj.children = child[0];
236
236
  }