From 61df155f8582ca118d69c9591253b504e694823c Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 11:06:22 -0500 Subject: [PATCH] Separating the revoke client functionality from the main vpn lists. --- src/app/views/VPN/VPN.jsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/views/VPN/VPN.jsx b/src/app/views/VPN/VPN.jsx index b3ce55e..c5839bb 100644 --- a/src/app/views/VPN/VPN.jsx +++ b/src/app/views/VPN/VPN.jsx @@ -44,11 +44,15 @@ const VPN = () => { }, ], data: availableClients, - createDisplayMode: 'modal', - renderCreateRowDialogContent: () => ( setCreateOpen(false)} onCreate={handleCreateClientSubmit} />), - enableTopToolbar: true, - enableToolbarInternalActions: true, - enableRowActions: true, + renderTopToolbarCustomActions: () => ( + + ) }); const fetchClients = async () => { -- 2.43.0