DEV: Topic creator fix (#181)

This commit is contained in:
Jordan Vidrine
2025-06-11 14:03:52 -05:00
committed by GitHub
parent 14aa72ad99
commit 05416abe70
@@ -5,15 +5,13 @@ export default class TopicCreatorColumn extends Component {
get topicCreator() {
return {
user: this.args.topic.creator,
username: this.args.topic.creator.username,
class: "--topic-creator",
};
}
<template>
<div class={{this.topicUser.class}}>
<div class={{this.topicCreator.class}}>
{{avatar this.topicCreator.user}}
<span class="topic-creator__username">{{this.topicUser.username}}</span>
</div>
</template>
}