Skip to content

Commit

Permalink
fix(j-s): Show correct tag in prison cases (#17640)
Browse files Browse the repository at this point in the history
Show correct tag in prison cases

Co-authored-by: Jón Levy <[email protected]>
  • Loading branch information
2 people authored and RunarVestmann committed Jan 29, 2025
1 parent 99878e6 commit 502497c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ export const PrisonCases: FC = () => {
{
cell: (row) => (
<TagContainer>
<TagCaseState caseState={CaseState.ACCEPTED} />
<TagCaseState
caseState={row.state}
isValidToDateInThePast={row.isValidToDateInThePast}
/>
{row.appealState && (
<TagAppealState
appealState={row.appealState}
Expand Down

0 comments on commit 502497c

Please sign in to comment.