discourse/app/assets/javascripts/select-kit/addon/templates/components/topic-notifications-button.hbs
2020-10-22 16:08:11 +02:00

29 lines
709 B
Handlebars

{{#if appendReason}}
<p class="reason">
{{topic-notifications-options
value=notificationLevel
topic=topic
onChange=(action "changeTopicNotificationLevel")
options=(hash
icon=icon
showFullTitle=showFullTitle
preventsClickPropagation=true
showCaret=showCaret
)
}}
<span class="text">{{html-safe topic.details.notificationReasonText}}</span>
</p>
{{else}}
{{topic-notifications-options
value=notificationLevel
topic=topic
onChange=(action "changeTopicNotificationLevel")
options=(hash
icon=icon
showFullTitle=showFullTitle
preventsClickPropagation=true
showCaret=showCaret
)
}}
{{/if}}