Merge branch 'feature/kroell/INSR-8907' of https://github.com/Safelite/DigitalConsumer.ISS into feature/kroell/INSR-8907

This commit is contained in:
Katie Kroell 2026-04-01 16:24:23 -04:00
commit 44ce4fc449
2 changed files with 6 additions and 3 deletions

View file

@ -6,11 +6,13 @@
linkType="text" linkType="text"
href="#!" href="#!"
:text="textForToggle" :text="textForToggle"
@click="handleClickToggle" /> :preventDefaultOnClick="true"
<div @click-event="handleClickToggle" />
<button
type="button"
class="recal-ack-toggle d-inline-block" class="recal-ack-toggle d-inline-block"
:class="[isDetailVisible ? 'active' : '']" :class="[isDetailVisible ? 'active' : '']"
@click="handleClickToggle"></div> @click="handleClickToggle"></button>
<Transition> <Transition>
<div <div
v-show="isDetailVisible" v-show="isDetailVisible"

View file

@ -466,6 +466,7 @@ export default {
this.isMobileView = !this.mql.matches; this.isMobileView = !this.mql.matches;
this.mql.addEventListener('change', this.handleMqlChange); this.mql.addEventListener('change', this.handleMqlChange);
this.mainStore.updateIsRecalAcknowledgedForScheduling(false); this.mainStore.updateIsRecalAcknowledgedForScheduling(false);
this.isRecalAcknowledged = false;
}, },
unmounted() { unmounted() {
if (this.mql) { if (this.mql) {