## Summary When a select option label is long, it was pushing the aggregate value (e.g., '12.6m') out of view because the tag had `flex-shrink: 0`. Changed to `min-width: 0` and `overflow: hidden` to allow the tag to shrink and truncate with ellipsis, keeping the aggregate value visible. ## Changes - Modified `StyledTag` in [RecordBoardColumnHeader.tsx](cci:7://file:///root/74/bronze/twenty/packages/twenty-front/src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeader.tsx:0:0-0:0) to allow shrinking The [Tag](cci:1://file:///root/74/bronze/twenty/packages/twenty-ui/src/components/tag/Tag.tsx:100:0-141:2) component already has built-in text truncation with `OverflowingTextWithTooltip`, so this change enables that functionality to work properly. Fixes #17350 ```** --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>