Skip to content

Commit

Permalink
fix(admin-ui): audit log remove red border from no
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed Jul 26, 2022
1 parent 7522f6e commit 022d2a9
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions admin-ui/app/routes/Apps/Gluu/GluuCommitDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ const GluuCommitDialog = ({
</Col>
<Col sm={1}>to</Col>
<Col sm={3}>
<Badge color={`primary-${selectedTheme}`}>{String(item.value)}</Badge>
<Badge color={`primary-${selectedTheme}`}>
{String(item.value)}
</Badge>
</Col>
</FormGroup>
))}
Expand Down Expand Up @@ -102,19 +104,12 @@ const GluuCommitDialog = ({
<ModalFooter>
{/* <ClipLoader loading={loading} size={35} /> */}
{active && (
<Button
color={`primary-${selectedTheme}`}
onClick={handleAccept}
>
<Button color={`primary-${selectedTheme}`} onClick={handleAccept}>
<i className="fa fa-check-circle mr-2"></i>
{t('actions.accept')}
</Button>
)}{' '}
<Button
color="danger"
style={applicationStyle.buttonStyle}
onClick={closeModal}
>
<Button style={applicationStyle.buttonStyle} onClick={closeModal}>
<i className="fa fa-remove mr-2"></i>
{t('actions.no')}
</Button>
Expand Down

0 comments on commit 022d2a9

Please sign in to comment.