Skip to content

Commit

Permalink
Update MEMListPolicyTemplates.js
Browse files Browse the repository at this point in the history
Correct display issues
  • Loading branch information
DChorn-ANS committed Jul 30, 2023
1 parent 45ef541 commit d65811b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/views/endpoint/intune/MEMListPolicyTemplates.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,18 @@ const AutopilotListTemplates = () => {
const columns = [
{
name: 'Display Name',
selector: (row) => row['Displayname'],
selector: (row) => row['displayName'],
sortable: true,
cell: (row) => CellTip(row['Displayname']),
cell: (row) => CellTip(row['displayName']),
exportSelector: 'Displayname',
minWidth: '400px',
maxWidth: '400px',
},
{
name: 'Description',
selector: (row) => row['Description'],
selector: (row) => row['description'],
sortable: true,
cell: (row) => CellTip(row['Description']),
cell: (row) => CellTip(row['description']),
exportSelector: 'Description',
minWidth: '400px',
maxWidth: '400px',
Expand Down Expand Up @@ -124,7 +124,7 @@ const AutopilotListTemplates = () => {
<CippDatatable
keyField="id"
reportName={`${tenant?.defaultDomainName}-MEMPolicyTemplates-List`}
path="/api/ListIntuneTemplates"
path="/api/ListIntuneTemplates?View=true"
columns={columns}
params={{ TenantFilter: tenant?.defaultDomainName }}
/>
Expand Down

0 comments on commit d65811b

Please sign in to comment.