mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
Deprecations: A couple more {{#each x in y}}
This commit is contained in:
parent
da5e7c7383
commit
e3f016a79b
1 changed files with 2 additions and 2 deletions
|
@ -98,7 +98,7 @@
|
|||
<h3 class='stats-title'>{{i18n "user.summary.most_replied_to_users"}}</h3>
|
||||
{{#if model.most_replied_to_users.length}}
|
||||
<ul>
|
||||
{{#each user in model.most_replied_to_users}}
|
||||
{{#each model.most_replied_to_users as |user|}}
|
||||
<li>
|
||||
{{#user-info user=user}}
|
||||
{{fa-icon "reply"}}
|
||||
|
@ -135,7 +135,7 @@
|
|||
<h3 class='stats-title'>{{i18n "user.summary.most_liked_users"}}</h3>
|
||||
{{#if model.most_liked_users.length}}
|
||||
<ul>
|
||||
{{#each user in model.most_liked_users}}
|
||||
{{#each model.most_liked_users as |user|}}
|
||||
<li>
|
||||
{{#user-info user=user}}
|
||||
{{fa-icon "heart"}}
|
||||
|
|
Loading…
Reference in a new issue