Recal Modal

This commit is contained in:
Chloe Herd 2024-07-09 11:10:37 -04:00
parent acf6c3b3ea
commit 58d60a5834
2 changed files with 8 additions and 3 deletions

View file

@ -18,7 +18,8 @@
class="m-0"
:customText="checkboxLabelCopy"
marginTopSizeOverride="0"
typeStyle="small" />
typeStyle="small"
@text-link-clicked="bubbleTextBlockClick" />
<span v-if="screenReaderOnlyText" class="sr-only">{{ screenReaderOnlyText }}</span>
</label>
</div>
@ -81,6 +82,11 @@ export default {
default: false,
},
},
methods: {
bubbleTextBlockClick(event) {
this.$emit("textLinkClicked", event);
},
},
watch: {
modelValue(newValue, oldValue) {
if (this.value !== newValue) {

View file

@ -60,7 +60,7 @@
isRequired="true"
v-model="isRecalAckOptIn"
validationRules="recal-ack-required"
@text-link-clicked="openModal" />
@text-link-clicked="openModal('RecalModal')" />
</div>
</div>
@ -715,7 +715,6 @@ export default {
<style></style>
<style lang="scss" scoped>
.checkbox-group {
align-items: start;
> * {