@asaleh37/ui-base 25.6.19-6 → 25.6.19-7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asaleh37/ui-base",
3
- "version": "25.6.19-6",
3
+ "version": "25.6.19-7",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "Ahmed Saleh Mohamed",
@@ -255,9 +255,11 @@ export default function NavigationTree() {
255
255
 
256
256
  const mergedNavigationItems = [];
257
257
  if (AppInfo.enableAdministrationModule) {
258
- mergedNavigationItems.push(structuredClone(NavigationItems));
258
+ mergedNavigationItems.push(...structuredClone(NavigationItems));
259
259
  }
260
- mergedNavigationItems.push(structuredClone(AppInfo.businessNavigationItems));
260
+ mergedNavigationItems.push(
261
+ ...structuredClone(AppInfo.businessNavigationItems)
262
+ );
261
263
  const authoriedNavigationItems = filterData(mergedNavigationItems);
262
264
  console.log("authoriedNavigationItems", authoriedNavigationItems);
263
265
  return (