From 91e30633ef865307f43621f4fee1241cf321666c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Sat, 24 Jan 2026 11:16:53 +0100 Subject: [PATCH] pl-fe: link to antennas page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-fe/src/components/dropdown-navigation.tsx | 9 +++++++++ packages/pl-fe/src/components/sidebar-navigation.tsx | 8 ++++++++ 2 files changed, 17 insertions(+) diff --git a/packages/pl-fe/src/components/dropdown-navigation.tsx b/packages/pl-fe/src/components/dropdown-navigation.tsx index c269fae74..2695ec56e 100644 --- a/packages/pl-fe/src/components/dropdown-navigation.tsx +++ b/packages/pl-fe/src/components/dropdown-navigation.tsx @@ -266,6 +266,15 @@ const DropdownNavigation: React.FC = React.memo((): JSX.Element | null => { /> )} + {features.antennas && ( + } + onClick={closeSidebar} + /> + )} + {features.drive && ( = React.memo(({ shrink }) }); } + if (features.antennas) { + menu.push({ + to: '/antennas', + text: intl.formatMessage({ id: 'column.antennas', defaultMessage: 'Antennas' }), + icon: require('@phosphor-icons/core/regular/broadcast.svg'), + }); + } + if (features.events) { menu.push({ to: '/events',