Skip to content

Commit

Permalink
fixes interface bug mailboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinTegelaar committed Mar 14, 2022
1 parent 49471f0 commit cde4b4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/identity/administration/OffboardingWizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,15 +272,15 @@ const OffboardingWizard = () => {
<FontAwesomeIcon
color="#f77f00"
size="lg"
icon={props.values.AccessNoAutomap ? faCheck : faTimes}
icon={props.values.AccessAutomap ? faCheck : faTimes}
/>
</CListGroupItem>
<CListGroupItem className="d-flex justify-content-between align-items-center">
Give another user access to the mailbox without automap
<FontAwesomeIcon
color="#f77f00"
size="lg"
icon={props.values.AccessAutomap ? faCheck : faTimes}
icon={props.values.AccessNoAutomap ? faCheck : faTimes}
/>
</CListGroupItem>
<CListGroupItem className="d-flex justify-content-between align-items-center">
Expand Down

0 comments on commit cde4b4c

Please sign in to comment.