Reduce diff

This commit is contained in:
nabenabe0928
2024-07-31 09:13:35 +02:00
parent 5017197833
commit 72e9369988
@@ -55,7 +55,7 @@ export const TableArtifactViewer: React.FC<TableArtifactViewerProps> = (
})
const keys = Array.from(unionSet)
return keys.map((key) => ({
header: key || " ",
header: key,
accessorFn: (info: Data) =>
typeof info[key] === "object" ? JSON.stringify(info[key]) : info[key],
enableSorting: true,