Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
olivermrbl committed Feb 2, 2022
1 parent e32df65 commit fa33c00
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const useDraftOrderTableColumns = () => {
Header: "Draft",
accessor: "display_id",
Cell: ({ cell: { value }, index }) => (
<Table.Cell key={index}>{`#${value}`}</Table.Cell>
<Table.Cell key={index} className="pl-2">{`#${value}`}</Table.Cell>
),
},
{
Expand Down Expand Up @@ -61,7 +61,9 @@ const useDraftOrderTableColumns = () => {
Header: "Status",
accessor: "status",
Cell: ({ cell: { value }, index }) => (
<Table.Cell key={index}>{decideStatus(value)}</Table.Cell>
<Table.Cell key={index} className="pr-2">
{decideStatus(value)}
</Table.Cell>
),
},
],
Expand Down

0 comments on commit fa33c00

Please sign in to comment.