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 avatar from "discourse/helpers/avatar";
export default class TopicAuthorColumn extends Component {
constructor() {
super(...arguments);
}
<template>
<span class="topic-author-avatar">
{{avatar @topic.creator imageSize="large"}}
</span>
</template>
}