File tree Expand file tree Collapse file tree
packages/ui/src/FormWidgets/Select Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export const Select = <T extends string | number>({
7575 disabled : selectFieldDisabled ,
7676 disableGroupSelect,
7777 errorMessage,
78- enableTooltip = false ,
78+ enableTooltip = true ,
7979 hasError,
8080 helperText,
8181 hideIfSingleOption = false ,
@@ -554,7 +554,9 @@ export const Select = <T extends string | number>({
554554 return (
555555 < >
556556 < div
557- className = { `selected-options-wrapper ${ hasSelectedOptions ? "visible" : "" } ` }
557+ className = { `selected-options-wrapper ${
558+ hasSelectedOptions ? "visible" : ""
559+ } `}
558560 >
559561 { enableTooltip && (
560562 < Tooltip elementRef = { menuTooltipReference } { ...tooltipOptions } >
@@ -629,7 +631,9 @@ export const Select = <T extends string | number>({
629631
630632 return (
631633 < div
632- className = { `label-container ${ disabled ? "disabled" : "" } ${ focused ? "focused" : "" } ` . trimEnd ( ) }
634+ className = { `label-container ${ disabled ? "disabled" : "" } ${
635+ focused ? "focused" : ""
636+ } `. trimEnd ( ) }
633637 aria-invalid = { hasError }
634638 onClick = { toggleOptionsMenu }
635639 onKeyDown = { handleKeyDown }
You can’t perform that action at this time.
0 commit comments