Skip to content

Commit

Permalink
fix: Model table column cell adjustments.
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund committed Jan 25, 2024
1 parent a5df28a commit 0df46e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/features/ModelTable/ModelTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export const ModelTable = ({
id: 'isProcessed',
header: 'Status',
enableColumnFilter: false,
size: 50,
cell: ({ row }) => (
<>
{isActiveModel(row.original.analogueModelId) ? (
Expand Down Expand Up @@ -173,8 +174,8 @@ export const ModelTable = ({
id: 'navigate',
enableColumnFilter: false,
enableResizing: false,
maxSize: 220,
size: 200,
minSize: 200,
cell: ({ row }) => (
<Styled.Buttons>
<Button
Expand Down

0 comments on commit 0df46e9

Please sign in to comment.