Fixed textbox-question label

This commit is contained in:
Leah Schumann 2023-02-16 07:56:13 -05:00
parent 5643b82d06
commit 95318a38c5
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
:aria-label="questionText" :aria-label="questionText"
class="form-label" class="form-label"
:class="[questionAlignment === 'center' ? 'text-center w-100 mb-5' : '']" :class="[questionAlignment === 'center' ? 'text-center w-100 mb-5' : '']"
v-html="labelText"></label> v-html="questionText"></label>
<div class="input-wrapper" :class="[includeSearchIcon ? 'has-search-icon' : '']"> <div class="input-wrapper" :class="[includeSearchIcon ? 'has-search-icon' : '']">
<input <input
class="form-control" class="form-control"

View file

@ -139,7 +139,7 @@ export default {
"internalModel.zipCode": { "internalModel.zipCode": {
handler() { handler() {
this.resetsOnZipInput(); this.resetsOnZipInput();
} },
}, },
modelValue(newValue) { modelValue(newValue) {
this.internalModel = this.copyModel(newValue); this.internalModel = this.copyModel(newValue);