bug修复: 修复table-selector组件问题

pull/102/MERGE
猿小天 2023-08-11 20:47:38 +08:00
parent d0a9147e84
commit f73e856420
1 changed files with 5 additions and 5 deletions

View File

@ -440,11 +440,11 @@ export default {
this.selected.length === 0
? sizeInMap + 'px'
: Math.max(
tags
? tags.clientHeight + (tags.clientHeight > sizeInMap ? 6 : 0)
: 0,
sizeInMap
) + 'px'
tags
? tags.clientHeight + (tags.clientHeight > sizeInMap ? 6 : 0)
: 0,
sizeInMap
) + 'px'
input.style.height = height
if (this.visible && this.emptyText !== false) {
this.broadcast('ElSelectDropdown', 'updatePopper')