Skip to content

Commit

Permalink
fix: use translated string (#1757)
Browse files Browse the repository at this point in the history
  • Loading branch information
scmmishra authored Feb 26, 2024
1 parent fa239db commit 12ab492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/ListSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<b-taglist>
<b-tag v-for="l in selectedItems" :key="l.id" :class="l.subscriptionStatus" :closable="!$props.disabled"
:data-id="l.id" @close="removeList(l.id)" class="list">
{{ l.name }} <sup v-if="l.optin === 'double'">{{ l.subscriptionStatus }}</sup>
{{ l.name }} <sup v-if="l.optin === 'double'">{{ $t(`subscribers.status.${l.subscriptionStatus}`) }}</sup>
</b-tag>
</b-taglist>
</div>
Expand Down

0 comments on commit 12ab492

Please sign in to comment.