Merged in hotfix/2021-05-31 (pull request #83)

Emergency hotfix for GST registrant.
This commit is contained in:
Patrick Fic
2021-06-01 00:54:34 +00:00
2 changed files with 7 additions and 4 deletions

View File

@@ -36,8 +36,11 @@ export function JobsDetailRates({ jobRO, form, job }) {
<CurrencyInput
disabled={jobRO}
max={
((job.job_totals && job.job_totals.totals.federal_tax.amount) ||
0) / 100
Math.round(
(job.job_totals &&
job.job_totals.totals.federal_tax.amount) ||
0
) / 100
}
/>
</Form.Item>