We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22facfe commit c079679Copy full SHA for c079679
desktop/desktop.scss
@@ -48,6 +48,7 @@
48
.top-contributors--user-likes {
49
grid-area: right;
50
justify-self: end;
51
+ white-space: nowrap;
52
}
53
54
// Recent replies
javascripts/discourse/components/top-contributors.hbs
@@ -20,11 +20,11 @@
20
</span>
21
<span class={{concat "top-contributors--user-likes order--" this.order}}>
22
{{#if (eq this.order "likes_received")}}
23
+ {{number item.likes_received}}
24
{{d-icon "heart"}}
- {{item.likes_received}}
25
{{else}}
26
+ {{number item.likes_given}}
27
- {{item.likes_given}}
28
{{/if}}
29
30
</div>
@@ -33,4 +33,4 @@
33
34
<a class="top-contributors--view-all" href={{this.viewAllUrl}}>
35
{{theme-i18n "top_contributors.view_all"}}
36
-</a>
+</a>
0 commit comments