Merge pull request #431 from Safelite/brm-remove-dup-alert

Remove duplicate alert. Fix word wrap in alert.
This commit is contained in:
bmauger 2022-05-12 08:28:12 -04:00 committed by GitHub
commit a0b4603056
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 8 deletions

View file

@ -64,13 +64,6 @@
alertClass="alert-warning"
cmsWidgetName="NoMatchAlertWidget"
/>
<alert
class="my-3"
v-model="customAlertData"
v-if="vinNotFound"
alertClass="alert-warning"
cmsWidgetName="VinNotFound"
/>
<alert
class="my-3"
:manualHeadline="PerfectMatchNewVinAlertReadOnlyHeader"

View file

@ -10,7 +10,7 @@
<span v-if="copy.includes('routerLink:')" class="m-0 text-body">
<router-link :to="{query: {fmgPage: `${copy.split(':')[1].split(',')[0]}`}, name: 'root'}">{{ copy.split(':')[1].split(',')[1] }}</router-link>
</span>
<span v-else class="m-0 text-body" v-html="copy"></span>
&nbsp;<span v-else class="m-0 text-body" v-html="copy"></span>&nbsp;
</template>
</p>
<p v-else class="m-0 text-body" v-html="alertCopy"></p>
@ -131,6 +131,10 @@ export default {
& p {
font-size: .875rem;
margin-bottom: 0.25rem !important;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
}
</style>