From 5243be6f706936cfa26eff19446a5a0f0323272c Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 11:01:16 -0500 Subject: [PATCH] Separating the revoke client functionality from the main vpn lists. --- src/app/views/VPN/VPN.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/views/VPN/VPN.jsx b/src/app/views/VPN/VPN.jsx index dcc8663..a48fbdc 100644 --- a/src/app/views/VPN/VPN.jsx +++ b/src/app/views/VPN/VPN.jsx @@ -45,7 +45,8 @@ const VPN = () => { ], data: availableClients, createDisplayMode: 'modal', - renderCreateRowDialogContent: () => ( setCreateOpen(false)} onCreate={handleCreateClientSubmit} />) + renderCreateRowDialogContent: () => ( setCreateOpen(false)} onCreate={handleCreateClientSubmit} />), + enableColumnActions: true }); const fetchClients = async () => { -- 2.43.0