1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00

fix: make the chip in the playground project selector small (#9298)

This makes it the same size as the env selector, fixing a slight
visual misalignment.

Doing a reference check, I can't find any other uses of this selector,
so I'm making the changes directly.

Before:

![image](https://github.com/user-attachments/assets/a9847dc7-8237-46bd-8d5b-7149a5682a59)

After:

![image](https://github.com/user-attachments/assets/a78d71ed-3391-4f72-9c8f-64f926a821cf)
This commit is contained in:
Thomas Heartman 2025-02-12 09:38:49 +01:00 committed by GitHub
parent 5921f0ea09
commit f4e87389f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,6 +133,7 @@ export const ProjectSelect: VFC<IProjectSelectProps> = forwardRef(
{value.slice(0, limitTags).map((option, index) => (
<Chip
{...getTagProps({ index })}
size='small'
key={index}
label={option.label}
/>