mirror of
https://github.com/element-plus/element-plus.git
synced 2025-02-17 11:49:41 +08:00
fix(components): [select] input height calculation error (#14565)
closed #14561
This commit is contained in:
parent
495644e677
commit
808d7a6235
@ -411,7 +411,8 @@ export const useSelect = (props, states: States, ctx) => {
|
||||
ns.cssVarName('input-height')
|
||||
)
|
||||
const gotSize =
|
||||
cssVarOfSelectSize || getComponentSize(selectSize.value || form?.size)
|
||||
Number.parseFloat(cssVarOfSelectSize) ||
|
||||
getComponentSize(selectSize.value || form?.size)
|
||||
|
||||
const sizeInMap =
|
||||
selectSize.value ||
|
||||
|
Loading…
Reference in New Issue
Block a user