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 177f2fd commit 75ac070
Showing 1 changed file with 3 additions and 1 deletion.
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 @@ -193,7 +194,8 @@ const MRF_RESPONSE_TABLE_COLUMNS: Column<ResponseColumnData>[] = [
Header: MRF_FIRST_STEP_TIMESTAMP_LABEL,
accessor: 'submissionTime',
width: 250,
disableResizing: true
minWidth: 250,
disableResizing: true,
},
]

Expand Down

0 comments on commit 75ac070

Please sign in to comment.