Skip to content

Commit

Permalink
Merge pull request #25 from linkfang/setup-deploy
Browse files Browse the repository at this point in the history
Minor fix on status column style
  • Loading branch information
linkfang authored Dec 16, 2023
2 parents 02b33c7 + ea1f79a commit bd4ac0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/projects/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const columns: ColumnsType<TProjectData> = [
{ title: 'Customer', dataIndex: 'customer', width: 220, ellipsis: true },
{
title: 'Status',
width: 100,
width: 120,
sorter: (a, b) => a.status.localeCompare(b.status),
render: ({ status }: TProjectData) => (
<Tag css={{ width: '100%', textAlign: 'center' }} color={statusToColorObj[status]}>
Expand Down

0 comments on commit bd4ac0b

Please sign in to comment.