Select: fix input height of mini size

pull/7900/head
Leopoldthecoder 2017-10-31 10:37:32 +08:00 committed by 杨奕
parent 877718099e
commit 5d172ad5cf
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@
let input = [].filter.call(inputChildNodes, item => item.tagName === 'INPUT')[0];
const tags = this.$refs.tags;
input.style.height = this.selected.length === 0 && this.selectSize === 'mini'
? sizeMap[this.selectSize]
? sizeMap[this.selectSize] + 'px'
: Math.max(tags ? (tags.clientHeight + 10) : 0, sizeMap[this.selectSize] || 40) + 'px';
if (this.visible && this.emptyText !== false) {
this.broadcast('ElSelectDropdown', 'updatePopper');