From e0559bb2b4738e39444eca1729fba5d363847dd8 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 14 Oct 2025 12:05:35 +1100 Subject: [PATCH] [UI] Fix broken dashboard link (#10577) Ref: https://github.com/inventree/inventree/issues/10548 --- src/frontend/src/defaults/actions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/defaults/actions.tsx b/src/frontend/src/defaults/actions.tsx index 699b210630..665271391b 100644 --- a/src/frontend/src/defaults/actions.tsx +++ b/src/frontend/src/defaults/actions.tsx @@ -27,7 +27,7 @@ export function getActions(navigate: NavigateFunction) { id: 'dashboard', label: t`Dashboard`, description: t`Go to the InvenTree dashboard`, - onClick: () => {}, // navigate(menuItems.dashboard.link), + onClick: () => navigate('/'), leftSection: }, {