Skip to content

Commit

Permalink
Polishing more tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncid committed Jan 17, 2025
1 parent 5c061d7 commit 7398af1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions front/pages/w/[wId]/assistant/labs/trackers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default function TrackerConfigurations({
header: "Name",
accessorKey: "name",
meta: {
className: "w-14",
className: "w-48",
},
cell: (info: CellContext<RowData, string>) => (
<DataTable.CellContent>
Expand All @@ -119,9 +119,6 @@ export default function TrackerConfigurations({
id: "description",
header: "Description",
accessorKey: "description",
meta: {
className: "", // Add className to match ColumnMeta interface
},
cell: (info: CellContext<RowData, string>) => (
<DataTable.BasicCellContent
label={
Expand All @@ -135,7 +132,7 @@ export default function TrackerConfigurations({
header: "Status",
accessorKey: "status",
meta: {
className: "w-6",
className: "w-24",
},
cell: (info: CellContext<RowData, string>) => (
<DataTable.CellContent>
Expand All @@ -154,7 +151,7 @@ export default function TrackerConfigurations({
header: "Edit",
accessorKey: "id",
meta: {
className: "w-6",
className: "w-14",
},
cell: (info: CellContext<RowData, string>) => (
<Button
Expand Down

0 comments on commit 7398af1

Please sign in to comment.