FIX: Compute topic title correctly (#29)
Was using `unicode_title` but not all topics return a unicode_title attribute. So need to instead do this.
This commit is contained in:
parent
68a7243a66
commit
b13abb992c
|
@ -5,7 +5,7 @@
|
|||
}}
|
||||
|
||||
<div class="topic-content">
|
||||
<h1>{{topic.unicode_title}}</h1>
|
||||
<h1>{{{topic.fancyTitle}}}</h1>
|
||||
{{mount-widget
|
||||
widget="post"
|
||||
model=model
|
||||
|
|
Loading…
Reference in New Issue