feat: wire WirelessTab into device detail monitor section

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jason Staack
2026-03-15 20:00:07 -05:00
parent d227700e54
commit 3600a8e0ce
2 changed files with 6 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ import { SystemSimplePanel } from './categories/SystemSimplePanel'
// Standard config panel imports // Standard config panel imports
import { HealthTab } from '@/components/monitoring/HealthTab' import { HealthTab } from '@/components/monitoring/HealthTab'
import { WirelessTab } from '@/components/monitoring/WirelessTab'
import { InterfacesTab } from '@/components/monitoring/InterfacesTab' import { InterfacesTab } from '@/components/monitoring/InterfacesTab'
import { ConfigTab } from '@/components/config/ConfigTab' import { ConfigTab } from '@/components/config/ConfigTab'
import { InterfacesPanel } from '@/components/config/InterfacesPanel' import { InterfacesPanel } from '@/components/config/InterfacesPanel'
@@ -103,6 +104,9 @@ export function SimpleConfigView({
{activeTab === 'traffic' && ( {activeTab === 'traffic' && (
<InterfacesTab tenantId={tenantId} deviceId={deviceId} active /> <InterfacesTab tenantId={tenantId} deviceId={deviceId} active />
)} )}
{activeTab === 'wireless' && (
<WirelessTab tenantId={tenantId} deviceId={deviceId} active />
)}
{activeTab === 'interfaces' && ( {activeTab === 'interfaces' && (
<InterfacesPanel tenantId={tenantId} deviceId={deviceId} active /> <InterfacesPanel tenantId={tenantId} deviceId={deviceId} active />
)} )}

View File

@@ -35,6 +35,7 @@ const STANDARD_GROUPS: SidebarGroup[] = [
{ id: 'overview', label: 'Overview' }, { id: 'overview', label: 'Overview' },
{ id: 'health', label: 'Health' }, { id: 'health', label: 'Health' },
{ id: 'traffic', label: 'Traffic' }, { id: 'traffic', label: 'Traffic' },
{ id: 'wireless', label: 'Wireless' },
], ],
}, },
{ {
@@ -73,7 +74,7 @@ const STANDARD_GROUPS: SidebarGroup[] = [
{ {
label: 'WiFi', label: 'WiFi',
icon: Wifi, icon: Wifi,
items: [{ id: 'wifi', label: 'WiFi' }], items: [{ id: 'wifi', label: 'WiFi Config' }],
}, },
{ {
label: 'Queues', label: 'Queues',