Skip to content

Commit

Permalink
fix: fix Relation field form select labels display (#3081)
Browse files Browse the repository at this point in the history
Fixes #3080
  • Loading branch information
thaisguigon authored Dec 19, 2023
1 parent 235b97f commit 58f781b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ export const Select = <Value extends string | number | null>({
);

return disabled ? (
<>
<div>
{!!label && <StyledLabel>{label}</StyledLabel>}
{selectControl}
</>
</div>
) : (
<DropdownScope dropdownScopeId={dropdownScopeId}>
<div className={className}>
Expand Down

0 comments on commit 58f781b

Please sign in to comment.