From 245a002428245ba5596e6461b18d26f4fd49fb67 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 10 Jun 2026 14:06:03 +1000 Subject: [PATCH] [UI] User management spotlight (#12144) Add spotlight action to quickly jump to user management panel --- src/frontend/src/defaults/actions.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/defaults/actions.tsx b/src/frontend/src/defaults/actions.tsx index c33b80d812..908dce6b3c 100644 --- a/src/frontend/src/defaults/actions.tsx +++ b/src/frontend/src/defaults/actions.tsx @@ -9,7 +9,8 @@ import { IconSettings, IconTags, IconUserBolt, - IconUserCog + IconUserCog, + IconUsers } from '@tabler/icons-react'; import type { NavigateFunction } from 'react-router-dom'; @@ -213,6 +214,16 @@ export function getActions(navigate: NavigateFunction) { leftSection: }); + staff && + user?.hasViewPermission(ModelType.user) && + _actions.push({ + id: 'users', + label: t`Users`, + description: t`Manage user accounts`, + onClick: () => navigate('/settings/admin/user'), + leftSection: + }); + staff && user?.hasViewPermission(ModelType.pluginconfig) && _actions.push({