From a4b72fef0d85fb3fb328ac4e774ac5acba6bf4fa Mon Sep 17 00:00:00 2001 From: Simon Costea Date: Mon, 6 Jan 2025 15:49:00 +0200 Subject: [PATCH] Hide publication subscription & add short info --- src/components/grid/tiles/publication-card.vue | 2 +- src/components/subscriptions/not-subscribed/subscribe.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/grid/tiles/publication-card.vue b/src/components/grid/tiles/publication-card.vue index 52bc175..b0fa784 100644 --- a/src/components/grid/tiles/publication-card.vue +++ b/src/components/grid/tiles/publication-card.vue @@ -42,7 +42,7 @@ export default { subscriptionMessage(){ return this.isSubscribed ? `${this.$t('subscription.subscribed')} ${this.element.title}` - : this.$t('subscription.subtitle', {publicationName : this.element.title}); + : `${this.element.title} vil bli gjort tilgjengelig gratis om ikke så lenge. Nærmere informasjon kommer snart.`; }, coverImage(){ return `url(${this.element.coverImageUrl})`; diff --git a/src/components/subscriptions/not-subscribed/subscribe.vue b/src/components/subscriptions/not-subscribed/subscribe.vue index 44cc0d2..941c379 100644 --- a/src/components/subscriptions/not-subscribed/subscribe.vue +++ b/src/components/subscriptions/not-subscribed/subscribe.vue @@ -1,12 +1,12 @@