]> PHS Git Server - phs-admin.git/commitdiff
Adding available clients section to VPN page.
authorcharleswrayjr <charleswrayjr@gmail.com>
Tue, 9 Sep 2025 14:16:08 +0000 (09:16 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Tue, 9 Sep 2025 14:16:08 +0000 (09:16 -0500)
src/app/views/VPN/VPN.jsx

index 2d9360b000d2d785953676472eeb75dc8d3a9ea4..496a21fce0071e5ed46ded81b70248dabd5647a7 100644 (file)
@@ -104,7 +104,6 @@ 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}