Skip to content

Commit

Permalink
Update MFAReport.jsx
Browse files Browse the repository at this point in the history
MFARegistration can return null which isn't captured within "MFARegistration eq false"; Instead proposing use of "MFARegistration ne true" to filter accounts without MFA registration.
  • Loading branch information
PremierOneData committed May 13, 2024
1 parent f6d09ef commit ca8fc7f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/views/identity/reports/MFAReport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,15 @@ const MFAList = () => {
{
filterName: 'Enabled, licensed non-guest users missing MFA',
filter:
'Complex: UPN notlike #EXT#; IsLicensed eq true; accountEnabled eq true; MFARegistration eq false',
'Complex: UPN notlike #EXT#; IsLicensed eq true; accountEnabled eq true; MFARegistration ne true',
},
{
filterName: 'No MFA methods registered',
filter: 'Complex: MFARegistration eq false',
filter: 'Complex: MFARegistration ne true',
},
{
filterName: 'MFA methods registered',
filter: 'Complex: MFARegistration eq true',
},
],
columns: tenant.defaultDomainName === 'AllTenants' ? Altcolumns : columns,
Expand Down

0 comments on commit ca8fc7f

Please sign in to comment.