Fixes bug that causes textareas to not recieve proper data-classification
This commit is contained in:
parent
90186fbbeb
commit
9e54d53283
2
dist/index.js
vendored
2
dist/index.js
vendored
File diff suppressed because one or more lines are too long
@ -253,6 +253,7 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
classification () {
|
classification () {
|
||||||
if (this.isTextInput) return 'text'
|
if (this.isTextInput) return 'text'
|
||||||
|
if (this.isTextareaInput) return 'textarea'
|
||||||
if (this.isBoxInput) return 'box'
|
if (this.isBoxInput) return 'box'
|
||||||
if (this.isButtonInput) return 'button'
|
if (this.isButtonInput) return 'button'
|
||||||
if (this.isSelectInput) return 'select'
|
if (this.isSelectInput) return 'select'
|
||||||
|
Loading…
Reference in New Issue
Block a user