diff --git a/ghost/admin/app/components/editor-labs/publish-options/email-recipients.hbs b/ghost/admin/app/components/editor-labs/publish-options/email-recipients.hbs index 288f956415..d1f21aed30 100644 --- a/ghost/admin/app/components/editor-labs/publish-options/email-recipients.hbs +++ b/ghost/admin/app/components/editor-labs/publish-options/email-recipients.hbs @@ -6,7 +6,7 @@ @renderInPlace={{false}} @dropdownClass="gh-publish-newsletter-dropdown" /> - + {{#if (gt @publishOptions.newsletters.length 1)}}
@@ -19,7 +19,11 @@ @dropdownClass="gh-publish-newsletter-dropdown" as |newsletter| > - {{newsletter.name}}{{format-number newsletter.count.members}} + {{newsletter.name}} + {{!-- TODO: remove conditional when author/editor can fetch member counts --}} + {{#if @publishOptions.user.isAdmin}} + {{format-number newsletter.count.members}} + {{/if}}
{{/if}}