From c61afe8f969dc29d407b1282d961c15594a2cfb6 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Thu, 16 Jan 2025 12:04:17 -0500 Subject: [PATCH] fix devices --- src/pages/identity/administration/devices/index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/identity/administration/devices/index.js b/src/pages/identity/administration/devices/index.js index 4d7e8e9085b9..30cfcc151253 100644 --- a/src/pages/identity/administration/devices/index.js +++ b/src/pages/identity/administration/devices/index.js @@ -10,8 +10,8 @@ const Page = () => { type: "GET", url: "/api/ExecDeviceDelete", data: { - ID: "ID", - Action: "Enable", + ID: "id", + Action: "!Enable", }, confirmText: "Are you sure you want to enable this device?", multiPost: false, @@ -21,8 +21,8 @@ const Page = () => { type: "GET", url: "/api/ExecDeviceDelete", data: { - ID: "ID", - Action: "Disable", + ID: "id", + Action: "!Disable", }, confirmText: "Are you sure you want to disable this device?", multiPost: false, @@ -32,7 +32,7 @@ const Page = () => { type: "GET", url: "/api/ExecGetRecoveryKey", data: { - GUID: "ID", + GUID: "id", }, confirmText: "Are you sure you want to retrieve the Bitlocker keys?", multiPost: false, @@ -42,8 +42,8 @@ const Page = () => { type: "GET", url: "/api/ExecDeviceDelete", data: { - ID: "ID", - Action: "Delete", + ID: "id", + Action: "!Delete", }, confirmText: "Are you sure you want to delete this device?", multiPost: false,