diff --git a/frontend/src/components/CsvAnalysis.jsx b/frontend/src/components/CsvAnalysis.jsx index c33d402..e92ace5 100644 --- a/frontend/src/components/CsvAnalysis.jsx +++ b/frontend/src/components/CsvAnalysis.jsx @@ -57,7 +57,11 @@ function NoteChip({ value, category, colors, selected, onSelect, draggable, onDr ); } -function CategoryBucket({ name, notes, colors, isOver, onDrop, onDragOver, onDragLeave, onRemoveNote, onClickAssign }) { +function CategoryBucket({ + name, type, notes, colors, isOver, isCustom, unassignedCount, + onDrop, onDragOver, onDragLeave, onRemoveNote, onClickAssign, + onBulkAddUnassigned, onRemoveBucket, +}) { return (
{name}
++ {name} + {type === 'numerical' && ( + + numerical + + )} +
+ {isCustom && ( + + )} +