mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +02: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:  After: 
This commit is contained in:
parent
5921f0ea09
commit
f4e87389f1
@ -133,6 +133,7 @@ export const ProjectSelect: VFC<IProjectSelectProps> = forwardRef(
|
|||||||
{value.slice(0, limitTags).map((option, index) => (
|
{value.slice(0, limitTags).map((option, index) => (
|
||||||
<Chip
|
<Chip
|
||||||
{...getTagProps({ index })}
|
{...getTagProps({ index })}
|
||||||
|
size='small'
|
||||||
key={index}
|
key={index}
|
||||||
label={option.label}
|
label={option.label}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user