fix(ui): oversized column selector pills (#12583)

#10030 adjusted the default `Pill` component size but forgot to set the
column selector pill sizes to small

## Before

![Screenshot 2025-05-27 at 14 34
31@2x](https://github.com/user-attachments/assets/0f7d44e7-343a-4542-9bc5-830f4bd2bd96)

## After

![Screenshot 2025-05-27 at 14 34
25@2x](https://github.com/user-attachments/assets/33f65fb7-130a-405b-820f-e31259b4f950)
This commit is contained in:
Alessio Gravili
2025-05-28 14:13:22 -07:00
committed by GitHub
parent 8a7ac784c4
commit 3022cab8ac

View File

@@ -76,6 +76,7 @@ export const ColumnSelector: React.FC<Props> = ({ collectionSlug }) => {
onClick={() => {
void toggleColumn(accessor)
}}
size="small"
>
{col.CustomLabel ?? <FieldLabel label={label as StaticLabel} unstyled />}
</Pill>