Skip to content

Commit

Permalink
Merge pull request #70 from openimis/hotfix/OP-1908
Browse files Browse the repository at this point in the history
OP-1908: display counter sign for contract
  • Loading branch information
delcroip authored Oct 9, 2024
2 parents 0e69145 + 6f2cebb commit 0ab02db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/ContractForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const styles = theme => ({
fab: theme.fab,
counterFab: {
position: 'fixed',
bottom: theme.spacing(11),
right: theme.spacing(2),
bottom: theme.spacing(18),
right: theme.spacing(1),
zIndex: 1200
}
});
Expand Down Expand Up @@ -221,7 +221,7 @@ class ContractForm extends Component {
{rights.includes(RIGHT_POLICYHOLDERCONTRACT_APPROVE) && this.isApprovable() && !this.state.isDirty && (
<Tooltip title={formatMessage(intl, "contract", "counterButton.tooltip")} placement="left">
<div className={classes.counterFab}>
<Fab color="primary" size="small" onClick={() => counter(this.state.contract)}>
<Fab color="primary" size="normal" onClick={() => counter(this.state.contract)}>
<CloseIcon/>
</Fab>
</div>
Expand Down

0 comments on commit 0ab02db

Please sign in to comment.