We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa5d654 + 32f800a commit 94ee3cbCopy full SHA for 94ee3cb
src/pages/identity/administration/devices/index.js
@@ -27,6 +27,7 @@ const Page = () => {
27
},
28
confirmText: "Are you sure you want to enable this device?",
29
multiPost: false,
30
+ condition: (row) => !row.accountEnabled,
31
icon: <CheckCircleOutline />,
32
33
{
@@ -39,6 +40,7 @@ const Page = () => {
39
40
41
confirmText: "Are you sure you want to disable this device?",
42
43
+ condition: (row) => row.accountEnabled,
44
icon: <Block />,
45
46
@@ -80,7 +82,7 @@ const Page = () => {
80
82
simpleColumns={[
81
83
"displayName",
84
"accountEnabled",
- "recipientType",
85
+ "trustType",
86
"enrollmentType",
87
"manufacturer",
88
"model",
0 commit comments