mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Fixed "member since" date on dashboard
no refs Fixes the "member since" value on dashboard for Top members table, was incorrectly referencing the `member` variable so all dates were picked as of today.
This commit is contained in:
parent
c206506ccb
commit
f7bc2f264b
1 changed files with 2 additions and 2 deletions
|
@ -205,8 +205,8 @@
|
|||
<span class="open-rate">{{member.emailOpenRate}}%</span>
|
||||
{{else}}
|
||||
<span class="open-rate">
|
||||
{{moment-format @member.createdAtUTC "D MMM YYYY"}}<br>
|
||||
<span>{{moment-from-now @member.createdAtUTC}}</span>
|
||||
{{moment-format member.createdAtUTC "D MMM YYYY"}}<br>
|
||||
<span>{{moment-from-now member.createdAtUTC}}</span>
|
||||
</span>
|
||||
{{/if}}
|
||||
</li>
|
||||
|
|
Loading…
Add table
Reference in a new issue