-
-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sort User List to bring starred users at top.
Split starred and unstarred users with a horizontal line.
- Loading branch information
1 parent
802cd0e
commit 681b057
Showing
2 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
{{! User Presence rows }} | ||
{{#each users}} | ||
{{#each starred_users}} | ||
{{partial "user_presence_row"}} | ||
{{/each}} | ||
<hr> | ||
{{#each unstarred_users}} | ||
{{partial "user_presence_row"}} | ||
{{/each}} |