mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
FIX: bind the suggested topic/messages text
This commit is contained in:
parent
6478f5defa
commit
f77dfda097
2 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@
|
|||
|
||||
{{#if model.details.suggested_topics.length}}
|
||||
<div id="suggested-topics">
|
||||
<h3>{{{unbound view.suggestedTitle}}}</h3>
|
||||
<h3>{{{view.suggestedTitle}}}</h3>
|
||||
<div class="topics">
|
||||
{{#if model.isPrivateMessage}}
|
||||
{{basic-topic-list
|
||||
|
|
|
@ -169,7 +169,7 @@ const TopicView = Ember.View.extend(AddCategoryClass, AddArchetypeClass, Scrolli
|
|||
return this.get('controller.model.isPrivateMessage') ?
|
||||
"<i class='private-message-glyph fa fa-envelope'></i> " + I18n.t("suggested_topics.pm_title") :
|
||||
I18n.t("suggested_topics.title");
|
||||
}.property()
|
||||
}.property('topic')
|
||||
});
|
||||
|
||||
function highlight(postNumber) {
|
||||
|
|
Loading…
Reference in a new issue