CSR-495 defect

This commit is contained in:
CarlNation 2022-04-19 15:54:01 -04:00
parent 38234728be
commit 7948704324

View file

@ -10,10 +10,10 @@
<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>
</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>
</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
type="button"
class="btn-close p-2"
@ -128,5 +128,8 @@ export default {
height: 1rem;
}
}
& p {
margin-bottom: 0px;
}
}
</style>