Skip to content

Commit

Permalink
Add tags to customers
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Dec 9, 2024
1 parent e12e569 commit 71d2036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dashboard/src/components/tables/customers/row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function CustomerRow({ row, setOpen }: Props) {
{row.getVisibleCells().map((cell, index) => (
<TableCell
key={cell.id}
onClick={() => ![3, 4, 5].includes(index) && setOpen(row.id)}
onClick={() => ![3, 4, 6].includes(index) && setOpen(row.id)}
className={cn(index !== 0 && "hidden md:table-cell")}
>
{flexRender(cell.column.columnDef.cell, cell.getContext())}
Expand Down

0 comments on commit 71d2036

Please sign in to comment.