From: charleswrayjr Date: Tue, 9 Sep 2025 14:05:51 +0000 (-0500) Subject: Adding available clients section to VPN page. X-Git-Url: https://git.phasecustomsoft.com/static/git-favicon.png?a=commitdiff_plain;h=d134d04bd27840ebc69cbaefdc933a344e8dc69b;p=phs-admin.git Adding available clients section to VPN page. --- 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} />