Merge pull request #2560 from tugcekucukoglu/master

Fixed #2522 - InputText and Textarea duplicating custom class(es) in …
pull/2561/head
Tuğçe Küçükoğlu 2022-05-24 14:01:07 +03:00 committed by GitHub
commit d21bdcb103
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@
<script>
export default {
name: 'InputText',
inheritAttrs: false,
emits: ['update:modelValue'],
props: {
modelValue: null

View File

@ -5,6 +5,7 @@
<script>
export default {
name: 'Textarea',
inheritAttrs: false,
emits: ['update:modelValue'],
props: {
modelValue: null,
@ -35,7 +36,7 @@ export default {
}
},
onInput(event) {
if (this.autoResize) {
if (this.autoResize) {
this.resize();
}