@asaleh37/ui-base 25.6.19-5 → 25.6.19-6
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/layout/NavigationTree.tsx +1 -2
package/package.json
CHANGED
|
@@ -236,7 +236,6 @@ export default function NavigationTree() {
|
|
|
236
236
|
const isMobile = useIsMobile();
|
|
237
237
|
const { isUserAuthorized } = useSession();
|
|
238
238
|
const filterData = (data) => {
|
|
239
|
-
console.log("filterDate", data);
|
|
240
239
|
const parentItems = [];
|
|
241
240
|
for (let parentItem of data) {
|
|
242
241
|
if (
|
|
@@ -260,7 +259,7 @@ export default function NavigationTree() {
|
|
|
260
259
|
}
|
|
261
260
|
mergedNavigationItems.push(structuredClone(AppInfo.businessNavigationItems));
|
|
262
261
|
const authoriedNavigationItems = filterData(mergedNavigationItems);
|
|
263
|
-
|
|
262
|
+
console.log("authoriedNavigationItems", authoriedNavigationItems);
|
|
264
263
|
return (
|
|
265
264
|
<RichTreeView
|
|
266
265
|
items={authoriedNavigationItems}
|