webui: add sessions/memory management and show full hot-reload field details

This commit is contained in:
DBT
2026-02-25 18:25:23 +00:00
parent 379a0a2366
commit 98add491be
9 changed files with 5488 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
import React from 'react';
import { LayoutDashboard, MessageSquare, Settings, Clock, Server, Terminal, Globe, Zap } from 'lucide-react';
import { LayoutDashboard, MessageSquare, Settings, Clock, Server, Terminal, Zap, FolderOpen } from 'lucide-react';
import { useTranslation } from 'react-i18next';
import { useAppContext } from '../context/AppContext';
import NavItem from './NavItem';
@@ -20,6 +20,7 @@ const Sidebar: React.FC = () => {
<NavItem icon={<Settings className="w-5 h-5" />} label={t('config')} to="/config" />
<NavItem icon={<Clock className="w-5 h-5" />} label={t('cronJobs')} to="/cron" />
<NavItem icon={<Server className="w-5 h-5" />} label={t('nodes')} to="/nodes" />
<NavItem icon={<FolderOpen className="w-5 h-5" />} label={t('memory')} to="/memory" />
</nav>
<div className="p-4 border-t border-zinc-800 bg-zinc-900/50">