This commit is contained in:
FrankRua 2022-01-17 17:01:54 -05:00
parent ab947a4d15
commit b8d5f7a72d

View file

@ -4,7 +4,6 @@
v-if="imageSrc" v-if="imageSrc"
> >
<img class="logo-image img-fluid" :src="imageSrc" alt="Safelite logo" /> <img class="logo-image img-fluid" :src="imageSrc" alt="Safelite logo" />
<p> {{eventBusItem}} </p>
<alert <alert
v-if="displayGlobalAlert" v-if="displayGlobalAlert"
:alertClass="globalAlertMessage.type" :alertClass="globalAlertMessage.type"
@ -39,11 +38,6 @@ export default {
this.imageSrc = cmsContent.LogoImage; this.imageSrc = cmsContent.LogoImage;
}, },
}, },
computed: {
eventBusItem(){
return eventBus.readAndPopEventFromBus(globalEvents.Categories.GLOBAL_ALERT, globalEvents.SubCategories.PAGE_NOT_FOUND);
}
},
components: { components: {
alert, alert,
}, },