From aadf1b6fc58df684ee8cd5d34e9e1da7c1279af5 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Tue, 9 Sep 2025 11:04:59 -0500 Subject: [PATCH] Separating the revoke client functionality from the main vpn lists. --- src/app/views/VPN/VPN.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/views/VPN/VPN.jsx b/src/app/views/VPN/VPN.jsx index fa31dee..b3ce55e 100644 --- a/src/app/views/VPN/VPN.jsx +++ b/src/app/views/VPN/VPN.jsx @@ -46,7 +46,9 @@ const VPN = () => { data: availableClients, createDisplayMode: 'modal', renderCreateRowDialogContent: () => ( setCreateOpen(false)} onCreate={handleCreateClientSubmit} />), - enableColumnActions: true + enableTopToolbar: true, + enableToolbarInternalActions: true, + enableRowActions: true, }); const fetchClients = async () => { -- 2.43.0