From e18ba2bb4da6437f7f0060211df3085b8c8f5ff9 Mon Sep 17 00:00:00 2001 From: Simon Backx Date: Thu, 22 Sep 2022 14:22:29 +0200 Subject: [PATCH] Removed hardcoded subscribers count from list-item-clicks fixes https://github.com/TryGhost/Team/issues/1948 --- ghost/admin/app/components/posts-list/list-item-clicks.hbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghost/admin/app/components/posts-list/list-item-clicks.hbs b/ghost/admin/app/components/posts-list/list-item-clicks.hbs index 239e39a095..94f0914c60 100644 --- a/ghost/admin/app/components/posts-list/list-item-clicks.hbs +++ b/ghost/admin/app/components/posts-list/list-item-clicks.hbs @@ -35,7 +35,7 @@ Published {{#if @post.hasEmail}} {{#if this.isHovered}} - and sent to 2,467 free subscribers + and sent to {{gh-pluralize @post.email.emailCount "member"}} {{else}} and sent {{/if}} @@ -97,7 +97,7 @@ {{#if @post.hasEmail}} and sent {{#if this.isStateHovered}} - to 2,467 free subscribers + to {{gh-pluralize @post.email.emailCount "member"}} {{/if}} {{/if}} @@ -107,7 +107,7 @@ Sent {{#if this.isStateHovered}} - to 2,467 free subscribers + to {{gh-pluralize @post.email.emailCount "member"}} {{/if}} {{/if}}