Skip to content

Commit

Permalink
fix: sources front
Browse files Browse the repository at this point in the history
  • Loading branch information
david-nathanael committed Sep 7, 2023
1 parent b9d418a commit 0c1e5ce
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ui/app/admin/personnes/components/PersonList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,12 @@ const PersonList = () => {
},
},
source: {
id: "source",
id: "sources",
size: 100,
header: () => "Source",
header: () => "Sources",
// eslint-disable-next-line @typescript-eslint/no-explicit-any
cell: ({ row }) => (row.original._meta as any)?.source ?? "",
cell: ({ row }) =>
(row.original._meta as any)?.sources?.join(", ") ?? "",
},
actions: {
id: "actions",
Expand Down

0 comments on commit 0c1e5ce

Please sign in to comment.