Merge pull request #354 from Safelite/feature/CSR-495

CSR-495 defect
This commit is contained in:
CarlNation 2022-04-19 15:58:00 -04:00 committed by GitHub
commit da9b1d67e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,10 +10,10 @@
<span v-if="copy.includes('routerLink:')" class="m-0 text-body small"> <span v-if="copy.includes('routerLink:')" class="m-0 text-body small">
<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 small">{{ copy }}</span> <span v-else class="m-0 text-body small" v-html="copy"></span>
</template> </template>
</p> </p>
<p v-else class="m-0 text-body small">{{ alertCopy }}</p> <p v-else class="m-0 text-body small" v-html="alertCopy"></p>
<button <button
type="button" type="button"
class="btn-close p-2" class="btn-close p-2"
@ -128,5 +128,8 @@ export default {
height: 1rem; height: 1rem;
} }
} }
& p {
margin-bottom: 0px;
}
} }
</style> </style>