Skip to content

fix devices #3317

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/pages/identity/administration/devices/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand Down
Loading