@a-vision-software/vue-input-components 1.3.19 → 1.3.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -177,7 +177,7 @@ const handleInput = (event: Event) => {
|
|
|
177
177
|
const value = (event.target as HTMLTextAreaElement).value
|
|
178
178
|
emit('update:modelValue', value)
|
|
179
179
|
debounceAutosave(value)
|
|
180
|
-
if (props.type === '
|
|
180
|
+
if (props.type === 'textarea' && (event.target as HTMLTextAreaElement).tagName === 'TEXTAREA') {
|
|
181
181
|
adjustHeight(event.target as HTMLTextAreaElement)
|
|
182
182
|
}
|
|
183
183
|
}
|