Skip to content

Commit 3750364

Browse files
committed
fix: select size
1 parent 82848c4 commit 3750364

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Shared/Components/SelectPicker/SelectPicker.component.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ const SelectPicker = ({
198198
selectRef,
199199
...props
200200
}: SelectPickerProps) => {
201-
const { inputId, required, isDisabled, controlShouldRenderValue, value } = props
201+
const { inputId, required, isDisabled, controlShouldRenderValue = true, value } = props
202202
const {
203203
isCreatable = false,
204204
isGroupHeadingSelectable = false,
@@ -283,6 +283,7 @@ const SelectPicker = ({
283283
</Tippy>
284284
)
285285

286+
// TODO: fix the right overflow/left overflow issue for menu
286287
return (
287288
<div className="flex column left top dc__gap-4">
288289
{/* Note: Common out for fields */}

0 commit comments

Comments
 (0)