diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8ee98d8..185518f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
+### Added
+
+- Show number of subscribers on subscription settings page.
+
### Fixed
- Show full date and time in post timestamp tooltip.
diff --git a/src/components/SubscriptionSettingsEthereum.vue b/src/components/SubscriptionSettingsEthereum.vue
index 2889fa3..bbaac2c 100644
--- a/src/components/SubscriptionSettingsEthereum.vue
+++ b/src/components/SubscriptionSettingsEthereum.vue
@@ -14,11 +14,14 @@
Subscriptions are enabled
-
+
{{ subscriptionConfig.pricePerMonth }}
{{ subscriptionConfig.tokenSymbol }}
per month
+
+ {{ ensureCurrentUser().subscribers_count }} subscribers
+
Subscriptions are not enabled
@@ -334,7 +337,7 @@ async function onWithdrawReceived() {
gap: calc($block-inner-padding / 2);
padding: $block-inner-padding;
- .price {
+ .info-item {
font-size: 16px;
font-weight: bold;
}
diff --git a/src/components/SubscriptionSettingsMonero.vue b/src/components/SubscriptionSettingsMonero.vue
index eca5479..ea08bc7 100644
--- a/src/components/SubscriptionSettingsMonero.vue
+++ b/src/components/SubscriptionSettingsMonero.vue
@@ -3,9 +3,12 @@
Subscriptions are enabled
-
+
{{ getPricePerMonth(subscriptionOption.price) }} XMR per month
+
+ {{ ensureCurrentUser().subscribers_count }} subscribers
+
Subscriptions are not enabled
@@ -157,7 +160,7 @@ async function saveSubscriptionSettings() {
gap: calc($block-inner-padding / 2);
padding: $block-inner-padding;
- .price {
+ .info-item {
font-size: 16px;
font-weight: bold;
}