From 59750dad7d56fc9d5e1c7103a7395934741469f7 Mon Sep 17 00:00:00 2001 From: Timon Date: Tue, 2 Jun 2026 17:19:59 +0200 Subject: [PATCH] feat: places in context search (#28768) --- web/src/lib/commands.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/src/lib/commands.ts b/web/src/lib/commands.ts index ddc90a4a42..7498756ac0 100644 --- a/web/src/lib/commands.ts +++ b/web/src/lib/commands.ts @@ -16,6 +16,7 @@ import { mdiLink, mdiLockOutline, mdiMagnify, + mdiMapMarkerOutline, mdiMapOutline, mdiServer, mdiStateMachine, @@ -93,6 +94,11 @@ export const getPagesProvider = ($t: MessageFormatter) => { onAction: () => goto(Route.people()), $if: () => authManager.authenticated && authManager.preferences.people.enabled, }, + { + title: $t('places'), + icon: mdiMapMarkerOutline, + onAction: () => goto(Route.places()), + }, { title: $t('shared_links'), icon: mdiLink,