From e507d0883551111f65fa7165a3573fe7979d7a20 Mon Sep 17 00:00:00 2001 From: wixarm Date: Mon, 16 Feb 2026 10:59:31 +0330 Subject: [PATCH] add: page and access filter to tags tab --- src/Pages/Tagging.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Pages/Tagging.tsx b/src/Pages/Tagging.tsx index ca16bd3..8f95f84 100644 --- a/src/Pages/Tagging.tsx +++ b/src/Pages/Tagging.tsx @@ -4,7 +4,10 @@ import Tabs from "../components/Tab/Tab"; import Taggings from "../partials/tagging/Taggings"; import Tags from "../partials/tagging/Tags"; -const tabItems = [{ label: "ثبت پلاک" }, { label: "پلاک ها" }]; +const tabItems = [ + { label: "ثبت پلاک" }, + { label: "پلاک ها", page: "tagging_detail", access: "Show-Tagging-Detail" }, +]; export default function Tagging() { const [selectedTab, setSelectedTab] = useState(0);