From 6d63faef44c16341b6da2c3d7e3992afae726289 Mon Sep 17 00:00:00 2001 From: "Andreas H. Kelch" <> Date: Wed, 20 Dec 2023 10:41:41 +0100 Subject: [PATCH] fix: update url --- docs/admin/customizing/tab.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/admin/customizing/tab.md b/docs/admin/customizing/tab.md index 2379fe1..b5ef400 100644 --- a/docs/admin/customizing/tab.md +++ b/docs/admin/customizing/tab.md @@ -68,7 +68,7 @@ adminInfo = { "access" : ["root"], "icon" : "default___download", # icon "action" : "route", # type - "url" : "/dt/myview", # our route + "url" : "/app/myview", # our route "enabled": "True" # "1" if a selection is required for activation } }, @@ -93,7 +93,7 @@ The following call can therefore be used to create an independent tab: import { useRouter } from "vue-router" ... const router = useRouter() -let route = router.resolve("/dt/myview") +let route = router.resolve("/app/myview") dbStore.addOpened(route, null, null, 'My View', 'user')