Skip to content

Commit

Permalink
fix(j-s): Extension Tag (#16760)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and jonnigs committed Nov 12, 2024
1 parent 8c1ff7f commit ba388cd
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const AppealCasesTable: FC<Props> = (props) => {
<ColumnCaseType
type={row.type}
decision={row.decision}
parentCaseId={row.parentCaseId ?? ''}
parentCaseId={row.parentCaseId}
/>
),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,15 @@ const CasesInProgressTable: FC<CasesInProgressTableProps> = (props) => {
{
cell: (row) => <DefendantInfo defendants={row.defendants} />,
},
{ cell: (row) => <ColumnCaseType type={row.type} /> },
{
cell: (row) => (
<ColumnCaseType
type={row.type}
decision={row.decision}
parentCaseId={row.parentCaseId}
/>
),
},
{ cell: (row) => <CreatedDate created={row.created} /> },
{
cell: (row) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,13 @@ const ActiveCases: FC<Props> = (props) => {
cell: (row) => <DefendantInfo defendants={row.defendants} />,
},
{
cell: (row) => <ColumnCaseType type={row.type} />,
cell: (row) => (
<ColumnCaseType
type={row.type}
decision={row.decision}
parentCaseId={row.parentCaseId}
/>
),
},
{
cell: (row) => <CreatedDate created={row.created} />,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,13 @@ export const PrisonCases: FC = () => {
cell: (row) => <DefendantInfo defendants={row.defendants} />,
},
{
cell: (row) => <ColumnCaseType type={row.type} />,
cell: (row) => (
<ColumnCaseType
type={row.type}
decision={row.decision}
parentCaseId={row.parentCaseId}
/>
),
},
{
cell: (row) => <CreatedDate created={row.created} />,
Expand Down

0 comments on commit ba388cd

Please sign in to comment.