Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Commit

Permalink
Use v-html to account for html tags
Browse files Browse the repository at this point in the history
  • Loading branch information
alecritson committed Nov 26, 2019
1 parent e2577ad commit e0f36fd
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,7 @@
<div class="row" v-if="order.shipping">
<div class="col-md-4">
<h4>Shipping Method</h4>
<strong class="text-info">
{{ shippingLine.description }}
<strong class="text-info" v-html="shippingLine.description">
</strong>
</div>
<div class="col-md-4">
Expand Down Expand Up @@ -373,8 +372,7 @@
<template v-if="shipping.length">
<tr v-for="line in shipping" :key="line.id">
<td>-</td>
<td>
{{ line.description }}
<td v-html="line.description">
</td>
<td>
{{ line.variant_name ? line.variant_name : '-' }}
Expand Down

0 comments on commit e0f36fd

Please sign in to comment.