From 09dfc25c036458cdbb625c48aa1817c71ab5e3b2 Mon Sep 17 00:00:00 2001 From: GEgorov Date: Sun, 12 Oct 2025 19:10:25 +0300 Subject: [PATCH] modified: frontend/src/components/Sidebar.tsx --- frontend/src/components/Sidebar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Sidebar.tsx b/frontend/src/components/Sidebar.tsx index 0039602..783a230 100644 --- a/frontend/src/components/Sidebar.tsx +++ b/frontend/src/components/Sidebar.tsx @@ -1,5 +1,5 @@ import { NavLink } from 'react-router-dom'; -import { Home, Key, Folder, Settings, FileCode, FileText } from 'lucide-react'; +import { Book, Home, Key, Folder, Settings, FileCode, FileText } from 'lucide-react'; import { cn } from '@/utils/cn'; const navItems = [ @@ -9,6 +9,7 @@ const navItems = [ { to: '/api-keys', icon: Key, label: 'API Ключи' }, { to: '/logs', icon: FileText, label: 'Логи' }, { to: '/settings', icon: Settings, label: 'Настройки' }, + { to: '/api-docs', icon: Book, label: 'Swagger' }, ]; export default function Sidebar() {