Skip to content

Commit

Permalink
fix: bug where last col does not expand in scrollable
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin9foong committed Dec 13, 2024
1 parent 38c6f2e commit fae67dc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const NON_MRF_RESPONSE_TABLE_COLUMNS: Column<ResponseColumnData>[] = [
Header: 'Timestamp',
accessor: 'submissionTime',
width: 250,
minWidth: 250,
disableResizing: true,
},
]
Expand Down Expand Up @@ -192,8 +193,9 @@ const MRF_RESPONSE_TABLE_COLUMNS: Column<ResponseColumnData>[] = [
{
Header: MRF_FIRST_STEP_TIMESTAMP_LABEL,
accessor: 'submissionTime',
width: 250,
disableResizing: true
width: 300,
minWidth: 280,
disableResizing: true,
},
]

Expand Down

0 comments on commit fae67dc

Please sign in to comment.