From 2c364ce20139f0ea613a134ce38c2c3e207b8736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20Ainsworth?= Date: Wed, 31 Aug 2022 16:44:45 +0000 Subject: [PATCH] Fix subscribe button --- front/src/components/channels/SubscribeButton.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/components/channels/SubscribeButton.vue b/front/src/components/channels/SubscribeButton.vue index be5455e5c..39dd8e7c6 100644 --- a/front/src/components/channels/SubscribeButton.vue +++ b/front/src/components/channels/SubscribeButton.vue @@ -24,8 +24,8 @@ const store = useStore() const isSubscribed = computed(() => store.getters['channels/isSubscribed'](props.channel.uuid)) const title = computed(() => isSubscribed.value - ? $pgettext('Content/Channel/Button/Verb', 'Subscribe') - : $pgettext('Content/Channel/Button/Verb', 'Unsubscribe') + ? $pgettext('Content/Channel/Button/Verb', 'Unsubscribe') + : $pgettext('Content/Channel/Button/Verb', 'Subscribe') ) const message = computed(() => ({