Skip to content

Commit 42d4dc7

Browse files
committed
fix: change <code> to <v-code>
1 parent fb65c6c commit 42d4dc7

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

web/app/pages/billing/index.vue

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -444,25 +444,25 @@ onMounted(async () => {
444444
<p class="text-medium-emphasis">
445445
This is the summary of the sent messages and received messages
446446
from
447-
<code
448-
v-if="billingStore.billingUsage"
449-
class="font-weight-bold"
450-
v-html="
451-
formatBillingPeriodDateOrdinal(
452-
billingStore.billingUsage.start_timestamp,
453-
)
454-
"
455-
/>
447+
<v-code v-if="billingStore.billingUsage" class="font-weight-bold">
448+
<span
449+
v-html="
450+
formatBillingPeriodDateOrdinal(
451+
billingStore.billingUsage.start_timestamp,
452+
)
453+
"
454+
/>
455+
</v-code>
456456
to
457-
<code
458-
v-if="billingStore.billingUsage"
459-
class="font-weight-bold"
460-
v-html="
461-
formatBillingPeriodDateOrdinal(
462-
billingStore.billingUsage.end_timestamp,
463-
)
464-
"
465-
/>.
457+
<v-code v-if="billingStore.billingUsage" class="font-weight-bold">
458+
<span
459+
v-html="
460+
formatBillingPeriodDateOrdinal(
461+
billingStore.billingUsage.end_timestamp,
462+
)
463+
"
464+
/> </v-code
465+
>.
466466
</p>
467467
<VRow v-if="billingStore.billingUsage">
468468
<VCol cols="12" md="6">

0 commit comments

Comments
 (0)