Tacking on fix for email address not validating when a space is present. We now trim the modelValue automatically

This commit is contained in:
Leah Schumann 2022-05-18 08:25:25 -04:00
parent 7dc7531533
commit 655d62418b

View file

@ -3,7 +3,7 @@
<label :for="inputId" :aria-label="questionText" class="form-label" v-html="labelText"></label>
<!-- See https://stackoverflow.com/a/30976223 for information about "do-not-autofill" -->
<input
v-model="value"
v-model.trim="value"
v-maska="mask"
:type="type"
class="form-control"