We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eab242 commit ee1cbefCopy full SHA for ee1cbef
components/vc-select/Select.jsx
@@ -164,7 +164,7 @@ const Select = {
164
if (isMultipleOrTags(this.$props)) {
165
const inputNode = this.getInputDOMNode();
166
const mirrorNode = this.getInputMirrorDOMNode();
167
- if (inputNode.value && inputNode.value && mirrorNode) {
+ if (inputNode && inputNode.value && mirrorNode) {
168
inputNode.style.width = '';
169
inputNode.style.width = `${mirrorNode.clientWidth + 10}px`;
170
} else if (inputNode) {
0 commit comments