Skip to content

Commit

Permalink
Fix unsub status not showing for non-optin lists on the subscribers UI.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed May 8, 2022
1 parent d39816e commit 19c1e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/Subscribers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
v-bind:key="l.id" style="padding-right:0.5em;">
<b-tag :class="l.subscriptionStatus" size="is-small" :key="l.id">
{{ l.name }}
<sup v-if="l.optin === 'double'">
<sup v-if="l.optin === 'double' || l.subscriptionStatus == 'unsubscribed'">
{{ $t(`subscribers.status.${l.subscriptionStatus}`) }}
</sup>
</b-tag>
Expand Down

0 comments on commit 19c1e51

Please # to comment.