UX: Topic list layout changes (#85)

This commit is contained in:
Jordan Vidrine
2025-03-27 16:31:46 -05:00
committed by GitHub
parent eff8628223
commit e7de006a23
5 changed files with 109 additions and 95 deletions
@@ -2,8 +2,8 @@ import icon from "discourse/helpers/d-icon";
import gt from "truth-helpers/helpers/gt";
const TopicRepliesColumn = <template>
{{#if (gt @topic.posts_count 1)}}
<span class="topic-replies">{{icon "reply"}}{{@topic.posts_count}}</span>
{{#if (gt @topic.replyCount 1)}}
<span class="topic-replies">{{icon "reply"}}{{@topic.replyCount}}</span>
{{/if}}
</template>;