Skip to content

Commit ca9eec9

Browse files
authored
Merge branch 'discourse:main' into main
2 parents 6808f90 + c6000c9 commit ca9eec9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

javascripts/discourse/components/card/topic-replies-column.gjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
import { gt } from "truth-helpers";
22
import icon from "discourse/helpers/d-icon";
3+
import number from "discourse/helpers/number";
34

45
const TopicRepliesColumn = <template>
56
{{#if (gt @topic.replyCount 1)}}
6-
<span class="topic-replies">{{icon "reply"}}{{@topic.posts_count}}</span>
7+
<span class="topic-replies">{{icon "reply"}}{{number
8+
@topic.posts_count
9+
}}</span>
710
{{/if}}
811
</template>;
912

scss/main.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ body:not(.has-full-page-chat, .wizard) {
110110
}
111111
}
112112

113+
.welcome-banner {
114+
display: none;
115+
}
116+
113117
#list-area {
114118
.show-more.has-topics {
115119
@include viewport.from(lg) {

0 commit comments

Comments
 (0)