FIX: bind the suggested topic/messages text

This commit is contained in:
Sam 2016-02-12 22:06:14 +11:00
parent 6478f5defa
commit f77dfda097
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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) {