Skip to content

Commit

Permalink
10293-design-debt: fix width of two columns in case inventory report
Browse files Browse the repository at this point in the history
  • Loading branch information
akuny committed Jan 6, 2025
1 parent 113ef1b commit a0bb319
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions web-client/src/views/CaseInventoryReport/CaseInventoryReport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,12 @@ export const CaseInventoryReport = connect(
Consolidated Case Indicator
</span>
</th>
<th aria-label="Docket number">Docket No.</th>
<th aria-label="Docket number" className="width-15">
Docket No.
</th>
<th>Case Title</th>
{caseInventoryReportHelper.showJudgeColumn && (
<th>Judge</th>
<th className="width-15">Judge</th>
)}
{caseInventoryReportHelper.showStatusColumn && (
<th>Case Status</th>
Expand All @@ -166,12 +168,14 @@ export const CaseInventoryReport = connect(
showLeadCaseIcon={row.isLeadCase}
/>
</td>
<td>
<td className="width-15">
<CaseLink formattedCase={row} />
</td>
<td>{row.caseTitle}</td>
{caseInventoryReportHelper.showJudgeColumn && (
<td>{row.associatedJudge}</td>
<td className="width-15">
{row.associatedJudge}
</td>
)}
{caseInventoryReportHelper.showStatusColumn && (
<td>{row.status}</td>
Expand Down

0 comments on commit a0bb319

Please sign in to comment.