mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Removed hardcoded subscribers count from list-item-clicks
fixes https://github.com/TryGhost/Team/issues/1948
This commit is contained in:
parent
6dbc42bf55
commit
e18ba2bb4d
1 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@
|
||||||
Published
|
Published
|
||||||
{{#if @post.hasEmail}}
|
{{#if @post.hasEmail}}
|
||||||
{{#if this.isHovered}}
|
{{#if this.isHovered}}
|
||||||
and sent to 2,467 free subscribers
|
and sent to {{gh-pluralize @post.email.emailCount "member"}}
|
||||||
{{else}}
|
{{else}}
|
||||||
and sent
|
and sent
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
{{#if @post.hasEmail}}
|
{{#if @post.hasEmail}}
|
||||||
and sent
|
and sent
|
||||||
{{#if this.isStateHovered}}
|
{{#if this.isStateHovered}}
|
||||||
<span {{css-transition "anim-fade-in-scale"}}>to 2,467 free subscribers</span>
|
<span {{css-transition "anim-fade-in-scale"}}>to {{gh-pluralize @post.email.emailCount "member"}}</span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</span>
|
</span>
|
||||||
|
@ -107,7 +107,7 @@
|
||||||
<span class="sent" {{on "mouseover" (fn (mut this.isStateHovered) true)}} {{on "mouseleave" (fn (mut this.isStateHovered) false)}}>
|
<span class="sent" {{on "mouseover" (fn (mut this.isStateHovered) true)}} {{on "mouseleave" (fn (mut this.isStateHovered) false)}}>
|
||||||
Sent
|
Sent
|
||||||
{{#if this.isStateHovered}}
|
{{#if this.isStateHovered}}
|
||||||
<span {{css-transition "anim-fade-in-scale"}}>to 2,467 free subscribers</span>
|
<span {{css-transition "anim-fade-in-scale"}}>to {{gh-pluralize @post.email.emailCount "member"}}</span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</span>
|
</span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue