Skip to content

Commit 6799618

Browse files
authored
fix(components): [select] recalculate input height when display change (element-plus#11374)
* fix(components): [select] recalculate input height when display change * fix
1 parent 702c71b commit 6799618

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/components/select/src/useSelect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ export const useSelect = (props, states: States, ctx) => {
557557
const handleResize = () => {
558558
resetInputWidth()
559559
tooltipRef.value?.updatePopper?.()
560-
if (props.multiple && !props.filterable) resetInputHeight()
560+
if (props.multiple) resetInputHeight()
561561
}
562562

563563
const resetInputWidth = () => {

0 commit comments

Comments
 (0)