N-FIN-49: show clear column if no category selected (#52)

Fixes #49
This commit is contained in:
Markus Thielker 2024-03-17 12:07:26 +01:00 committed by GitHub
commit 781de28b6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,13 +55,19 @@ export const columns = (
cell: ({row}) => {
const category = categories.find((category) => category.id === row.original.categoryId);
return (
<div className="flex items-center space-x-4">
<svg className="h-5" fill={category?.color} viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="10"/>
</svg>
<p>{category?.name ?? '-'}</p>
</div>
<>
{
category && (
<div className="flex items-center space-x-4">
<svg className="h-5" fill={category?.color} viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="10"/>
</svg>
<p>{category?.name ?? '-'}</p>
</div>
)
}
</>
);
},
size: 200,