From d134d04bd27840ebc69cbaefdc933a344e8dc69b Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 09:05:51 -0500 Subject: [PATCH] Adding available clients section to VPN page. --- src/app/views/VPN/VPN.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/views/VPN/VPN.jsx b/src/app/views/VPN/VPN.jsx index 95f1967..20161f7 100644 --- a/src/app/views/VPN/VPN.jsx +++ b/src/app/views/VPN/VPN.jsx @@ -103,7 +103,7 @@ const VPN = () => { console.log(row.hasCertificate); return row.hasCertificate ? 'Yes' : 'No'; }, header: 'Active Certificate' }, - { accessorFn: row => clients.find( c => c.name === row.clientName ), header: 'Connected' }, + { accessorFn: row => clients.find( c => c.name === row.clientName ) ? 'Yes' : 'No', header: 'Connected' }, ]} data={availableClients} /> -- 2.43.0