Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
DChorn-ANS committed Mar 22, 2024
1 parent 5e6e1b2 commit 83256e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/views/tenant/administration/AlertWizard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const AlertWizard = () => {
<RFFCFormSwitch name="UnusedLicenses" label="Alert on unused licenses" />
<RFFCFormSwitch name="OverusedLicenses" label="Alert on overused licenses" />
<RFFCFormSwitch
name="DisabledLicensedUsers"
name="LicensedDisabledUsers"
label="Alert on disabled and licensed users"
/>
<RFFCFormSwitch
Expand Down Expand Up @@ -279,7 +279,7 @@ const AlertWizard = () => {
<FontAwesomeIcon
color="#f77f00"
size="lg"
icon={props.values.DisabledLicensedUsers ? faCheck : faTimes}
icon={props.values.LicensedDisabledUsers ? faCheck : faTimes}
/>
</CListGroupItem>
<CListGroupItem className="d-flex justify-content-between align-items-center">
Expand Down
2 changes: 1 addition & 1 deletion src/views/tenant/administration/ListAlertsQueue.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const alertsList = [
},
{ name: 'UnusedLicenses', label: 'Alert on unused licenses' },
{ name: 'OverusedLicenses', label: 'Alert on overused licenses' },
{ name: 'DisabledLicensedUsers', label: 'Alert on disabled and licensed users' },
{ name: 'LicensedDisabledUsers', label: 'Alert on disabled and licensed users' },
{ name: 'AppSecretExpiry', label: 'Alert on expiring application secrets' },
{ name: 'ApnCertExpiry', label: 'Alert on expiring APN certificates' },
{ name: 'VppTokenExpiry', label: 'Alert on expiring VPP tokens' },
Expand Down

0 comments on commit 83256e0

Please sign in to comment.