Merge pull request #431 from Safelite/brm-remove-dup-alert
Remove duplicate alert. Fix word wrap in alert.
This commit is contained in:
commit
a0b4603056
2 changed files with 5 additions and 8 deletions
|
|
@ -64,13 +64,6 @@
|
||||||
alertClass="alert-warning"
|
alertClass="alert-warning"
|
||||||
cmsWidgetName="NoMatchAlertWidget"
|
cmsWidgetName="NoMatchAlertWidget"
|
||||||
/>
|
/>
|
||||||
<alert
|
|
||||||
class="my-3"
|
|
||||||
v-model="customAlertData"
|
|
||||||
v-if="vinNotFound"
|
|
||||||
alertClass="alert-warning"
|
|
||||||
cmsWidgetName="VinNotFound"
|
|
||||||
/>
|
|
||||||
<alert
|
<alert
|
||||||
class="my-3"
|
class="my-3"
|
||||||
:manualHeadline="PerfectMatchNewVinAlertReadOnlyHeader"
|
:manualHeadline="PerfectMatchNewVinAlertReadOnlyHeader"
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
<span v-if="copy.includes('routerLink:')" class="m-0 text-body">
|
<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>
|
<router-link :to="{query: {fmgPage: `${copy.split(':')[1].split(',')[0]}`}, name: 'root'}">{{ copy.split(':')[1].split(',')[1] }}</router-link>
|
||||||
</span>
|
</span>
|
||||||
<span v-else class="m-0 text-body" v-html="copy"></span>
|
<span v-else class="m-0 text-body" v-html="copy"></span>
|
||||||
</template>
|
</template>
|
||||||
</p>
|
</p>
|
||||||
<p v-else class="m-0 text-body" v-html="alertCopy"></p>
|
<p v-else class="m-0 text-body" v-html="alertCopy"></p>
|
||||||
|
|
@ -131,6 +131,10 @@ export default {
|
||||||
& p {
|
& p {
|
||||||
font-size: .875rem;
|
font-size: .875rem;
|
||||||
margin-bottom: 0.25rem !important;
|
margin-bottom: 0.25rem !important;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue