bt-core-app 2.0.172 → 2.0.173
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/dist/bt-core-app.js +1 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -44670,7 +44670,7 @@ function FU() {
|
|
|
44670
44670
|
}), l.forEach((i) => {
|
|
44671
44671
|
var o;
|
|
44672
44672
|
i.items = (o = i.items) == null ? void 0 : o.filter((s) => !s.requiresAuth || a.doShow(s.subscriptions, s.permissions, "view")).sort(yl.firstBy((s) => s.displayName));
|
|
44673
|
-
}), l.sort(yl.firstBy((i) => i.sortNumber ?? i.displayName)), Ho.currentGroup.value != null ? ((r = l.find((i) => i.displayName == Ho.currentGroup.value)) == null ? void 0 : r.items) ?? [] : l.filter((i) => !i.requiresAuth || a.doShow(i.subscriptions, i.permissions, "view"));
|
|
44673
|
+
}), l.sort(yl.firstBy((i) => i.sortNumber ?? i.displayName)), Ho.currentGroup.value != null ? ((r = l.find((i) => i.displayName == Ho.currentGroup.value)) == null ? void 0 : r.items) ?? [] : l.filter((i) => i.items != null && i.items.length > 0 && (!i.requiresAuth || a.doShow(i.subscriptions, i.permissions, "view")));
|
|
44674
44674
|
})
|
|
44675
44675
|
};
|
|
44676
44676
|
}
|
package/package.json
CHANGED