Complete main UI #37

Merged
FatttSnake merged 192 commits from FatttSnake into dev 2024-02-23 16:31:17 +08:00
Showing only changes of commit 6ff5e11f9d - Show all commits

View File

@@ -22,7 +22,9 @@ export const getAuthRoute = (
return route return route
.filter( .filter(
(value) => (value) =>
!(value.permission || parentPermission) || hasPathPermission(value.absolutePath) value.path === '*' ||
!(value.permission || parentPermission) ||
hasPathPermission(value.absolutePath)
) )
.map((value) => { .map((value) => {
if (value.children) { if (value.children) {