Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
822 B
Handlebars
Raw Normal View History

{{#if this.appendReason}}
<p class="reason">
2022-12-28 12:28:11 +00:00
<TopicNotificationsOptions
@value={{this.notificationLevel}}
@topic={{this.topic}}
@onChange={{action "changeTopicNotificationLevel"}}
@options={{hash
icon=this.icon
showFullTitle=this.showFullTitle
showCaret=this.showCaret
headerAriaLabel=(i18n "topic.notifications.title")
2022-12-28 12:28:11 +00:00
}}
/>
<span class="text">{{html-safe this.notificationReasonText}}</span>
</p>
{{else}}
2022-12-28 12:28:11 +00:00
<TopicNotificationsOptions
@value={{this.notificationLevel}}
@topic={{this.topic}}
@onChange={{action "changeTopicNotificationLevel"}}
@options={{hash
icon=this.icon
showFullTitle=this.showFullTitle
showCaret=this.showCaret
headerAriaLabel=(i18n "topic.notifications.title")
2022-12-28 12:28:11 +00:00
}}
/>
{{/if}}