Skip to content

Commit

Permalink
feat: adjust table spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin9foong committed Feb 27, 2025
1 parent e261a3b commit 2d9c39a
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ const MRF_RESPONSE_TABLE_COLUMNS: Column<ResponseColumnData>[] = [
{
Header: 'Response ID',
accessor: 'refNo',
width: 300,
minWidth: 300,
maxWidth: 300,
width: 240,
minWidth: 240,
maxWidth: 240,
},
{
Header: MRF_WORKFLOW_STATUS_LABEL,
Expand All @@ -215,9 +215,9 @@ const MRF_RESPONSE_TABLE_COLUMNS: Column<ResponseColumnData>[] = [
return <CompletedBadge />
}
},
width: 180,
minWidth: 180,
maxWidth: 220,
width: 160,
minWidth: 160,
maxWidth: 160,
},
{
Header: MRF_PENDING_RESPONSE_AT_LABEL,
Expand All @@ -240,7 +240,7 @@ const MRF_RESPONSE_TABLE_COLUMNS: Column<ResponseColumnData>[] = [
},
width: 180,
minWidth: 180,
maxWidth: 220,
maxWidth: 180,
},
{
Header: MRF_RESPONSE_TIMESTAMP_LABEL,
Expand All @@ -254,9 +254,9 @@ const MRF_RESPONSE_TABLE_COLUMNS: Column<ResponseColumnData>[] = [
// 'do MMM yyyy, hh:mm:ss a',
// )
// : '',
width: 250,
minWidth: 250,
disableResizing: true,
width: 240,
minWidth: 240,
maxWidth: 240,
},
{
Header: MRF_REMINDERS_LABEL,
Expand All @@ -270,8 +270,8 @@ const MRF_RESPONSE_TABLE_COLUMNS: Column<ResponseColumnData>[] = [
<SendReminderButton submissionId={submissionId} />
) : null
},
minWidth: 188,
width: 188,
minWidth: 160,
width: 160,
},
]

Expand Down

0 comments on commit 2d9c39a

Please sign in to comment.