This commit is contained in:
Jordan Vidrine
2025-03-05 20:20:30 -06:00
parent af4c0c540f
commit 8ebde81fda
8 changed files with 567 additions and 0 deletions
@@ -0,0 +1,14 @@
import Component from "@glimmer/component";
import icon from "discourse/helpers/d-icon";
export default class TopicRepliesColumn extends Component {
constructor() {
super(...arguments);
}
<template>
{{#if @topic.posts_count}}
<span class="topic-replies">{{icon "reply"}}{{@topic.posts_count}}</span>
{{/if}}
</template>
}