File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1244,12 +1244,14 @@ const LicenseSettings = () => {
1244
1244
{
1245
1245
name : 'Display Name' ,
1246
1246
selector : ( row ) => row [ 'Product_Display_Name' ] ,
1247
+ exportSelector : 'Product_Display_Name' ,
1247
1248
sortable : true ,
1248
1249
minWidth : '300px' ,
1249
1250
} ,
1250
1251
{
1251
1252
name : 'License ID' ,
1252
1253
selector : ( row ) => row [ 'GUID' ] ,
1254
+ exportSelector : 'GUID' ,
1253
1255
sortable : true ,
1254
1256
minWidth : '350px' ,
1255
1257
} ,
Original file line number Diff line number Diff line change @@ -33,6 +33,19 @@ const ListGDAPRoles = () => {
33
33
columns,
34
34
reportName : `GDAPRole-List` ,
35
35
path : '/api/ListGDAPRoles' ,
36
+ tableProps : {
37
+ selectableRows : true ,
38
+ actionsList : [
39
+ {
40
+ label : 'Delete Mapping' ,
41
+ modal : true ,
42
+ modalUrl : `/api/ExecDeleteGDAPRoleMapping?&GroupId=!GroupId` ,
43
+ modalMessage :
44
+ 'Are you sure you want to delete this role mapping? (Note: This does not delete the associated security groups or modify any GDAP relationships.)' ,
45
+ } ,
46
+ ] ,
47
+ keyField : 'GroupId' ,
48
+ } ,
36
49
} }
37
50
/>
38
51
</ div >
You can’t perform that action at this time.
0 commit comments