diff --git a/src/components/Select/SelectFetchable.tsx b/src/components/Select/SelectFetchable.tsx index 158c2d37..4594d239 100644 --- a/src/components/Select/SelectFetchable.tsx +++ b/src/components/Select/SelectFetchable.tsx @@ -192,7 +192,7 @@ export const SelectFetchable = React.forwardRef( if (!prefix && !internalLabel) return null return ( -
+
{prefix} {internalLabel}
diff --git a/src/components/Select/SelectStatic.tsx b/src/components/Select/SelectStatic.tsx index 9750b958..a085a532 100644 --- a/src/components/Select/SelectStatic.tsx +++ b/src/components/Select/SelectStatic.tsx @@ -189,9 +189,11 @@ export const SelectStatic = React.forwardRef( if (!prefix && !internalLabel) return null return ( -
+
{prefix} - {internalLabel} + + {internalLabel} +
) }, []) @@ -205,13 +207,13 @@ export const SelectStatic = React.forwardRef( {...props} >
    - {internalLabel && + {internalLabel && (
    {internalLabel}
    - } + )} {isOpen && inputItems && !isDependent &&