Skip to content

Commit

Permalink
Merge branch 'ticdi-363' into ticdi-363-365
Browse files Browse the repository at this point in the history
  • Loading branch information
mgtennant committed Jun 20, 2024
2 parents c5faf23 + 934953e commit ade3023
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion frontend/src/app/content/display/Provisions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const Provisions: FC<ProvisionsProps> = ({ dtid, documentType, provisionGroups }

return (
<>
<div>
<div style={{ display: 'flex', alignItems: 'center' }}>
<label htmlFor="provisionGroupSelect" style={{ marginRight: '10px' }}>
Select A Group
</label>
Expand All @@ -81,6 +81,13 @@ const Provisions: FC<ProvisionsProps> = ({ dtid, documentType, provisionGroups }
</option>
))}
</select>
<div style={{ marginLeft: '10px' }}>
{selectedProvisionGroupMax
? selectedProvisionGroupMax > 100
? 'There is no max for this group.'
: `Max for this group is ${selectedProvisionGroupMax}`
: ''}
</div>
</div>
<ProvisionsTable
provisions={provisions}
Expand Down

0 comments on commit ade3023

Please sign in to comment.