Skip to content

Commit dd172cf

Browse files
authored
Merge pull request #3317 from JohnDuprey/dev
fix devices
2 parents 904baa0 + c61afe8 commit dd172cf

File tree

1 file changed

+7
-7
lines changed
  • src/pages/identity/administration/devices

1 file changed

+7
-7
lines changed

src/pages/identity/administration/devices/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ const Page = () => {
1010
type: "GET",
1111
url: "/api/ExecDeviceDelete",
1212
data: {
13-
ID: "ID",
14-
Action: "Enable",
13+
ID: "id",
14+
Action: "!Enable",
1515
},
1616
confirmText: "Are you sure you want to enable this device?",
1717
multiPost: false,
@@ -21,8 +21,8 @@ const Page = () => {
2121
type: "GET",
2222
url: "/api/ExecDeviceDelete",
2323
data: {
24-
ID: "ID",
25-
Action: "Disable",
24+
ID: "id",
25+
Action: "!Disable",
2626
},
2727
confirmText: "Are you sure you want to disable this device?",
2828
multiPost: false,
@@ -32,7 +32,7 @@ const Page = () => {
3232
type: "GET",
3333
url: "/api/ExecGetRecoveryKey",
3434
data: {
35-
GUID: "ID",
35+
GUID: "id",
3636
},
3737
confirmText: "Are you sure you want to retrieve the Bitlocker keys?",
3838
multiPost: false,
@@ -42,8 +42,8 @@ const Page = () => {
4242
type: "GET",
4343
url: "/api/ExecDeviceDelete",
4444
data: {
45-
ID: "ID",
46-
Action: "Delete",
45+
ID: "id",
46+
Action: "!Delete",
4747
},
4848
confirmText: "Are you sure you want to delete this device?",
4949
multiPost: false,

0 commit comments

Comments
 (0)