1
0
mirror of synced 2024-11-22 21:36:04 +03:00

Fixes bug that causes textareas to not recieve proper data-classification

This commit is contained in:
Justin Schroeder 2019-09-10 01:08:04 -04:00
parent 90186fbbeb
commit 9e54d53283
2 changed files with 2 additions and 1 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@ -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'