solve bug of two polygon editable

This commit is contained in:
2025-11-02 10:33:35 +03:30
parent ab3c80a0d3
commit 7f11222330
15 changed files with 868 additions and 10 deletions

View File

@@ -24,6 +24,10 @@ import RouteIcon from "@mui/icons-material/Route";
import ScienceIcon from "@mui/icons-material/Science";
import SpaceDashboardIcon from "@mui/icons-material/SpaceDashboard";
import SpeedIcon from "@mui/icons-material/Speed";
import PsychologyAltIcon from '@mui/icons-material/PsychologyAlt';
import MapsHomeWorkIcon from '@mui/icons-material/MapsHomeWork';
import SecurityIcon from '@mui/icons-material/Security';
import ManageAccountsIcon from '@mui/icons-material/ManageAccounts';
export const pageMenuDev = [
{
@@ -299,6 +303,7 @@ export const pageMenuDev = [
label: "کارتابل شهرستان",
type: "page",
route: "/dashboard/inquiry-privacy/city-admin",
icon: <MapsHomeWorkIcon sx={{ width: "inherit", height: "inherit" }} />,
permissions: ["all"],
},
{
@@ -306,6 +311,7 @@ export const pageMenuDev = [
label: "کارتابل اداره حریم",
type: "page",
route: "/dashboard/inquiry-privacy/privacy-office",
icon: <SecurityIcon sx={{ width: "inherit", height: "inherit" }} />,
permissions: ["all"],
},
{
@@ -313,6 +319,7 @@ export const pageMenuDev = [
label: "کارتابل معاون",
type: "page",
route: "/dashboard/inquiry-privacy/assistant",
icon: <ManageAccountsIcon sx={{ width: "inherit", height: "inherit" }} />,
permissions: ["all"],
},
{
@@ -320,6 +327,7 @@ export const pageMenuDev = [
label: "کارتابل مدیر",
type: "page",
route: "/dashboard/inquiry-privacy/general-manager",
icon: <PsychologyAltIcon sx={{ width: "inherit", height: "inherit" }} />,
permissions: ["all"],
},
],