From 5b928dec73a441c68d6c9784174a10b8affa0a34 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 09:15:25 -0500 Subject: [PATCH] Adding available clients section to VPN page. --- src/app/views/VPN/VPN.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/views/VPN/VPN.jsx b/src/app/views/VPN/VPN.jsx index 20161f7..2d9360b 100644 --- a/src/app/views/VPN/VPN.jsx +++ b/src/app/views/VPN/VPN.jsx @@ -104,6 +104,8 @@ const VPN = () => { return row.hasCertificate ? 'Yes' : 'No'; }, header: 'Active Certificate' }, { accessorFn: row => clients.find( c => c.name === row.clientName ) ? 'Yes' : 'No', header: 'Connected' }, + { accessorFn: row => row.hasCertificate ? 'Yes' : 'No', header: 'Revoked' }, + { accessorFn: row => row.hasOvpn ? 'Yes' : 'No', header: 'Has Profile' }, ]} data={availableClients} /> -- 2.43.0