This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/chat/assets/javascripts/discourse/components/chat-channel-selection-row.hbs
2022-12-28 13:11:12 +00:00

16 lines
346 B
Handlebars

<div
class={{this.rowClassNames}}
role="button"
tabindex="0"
{{on "click" this.handleClick}}
data-id={{this.model.id}}
>
{{#if this.model.user}}
{{avatar this.model imageSize="tiny"}}
<span class="username">
{{this.model.username}}
</span>
{{else}}
<ChatChannelTitle @channel={{this.model}} />
{{/if}}
</div>