FIX: Account for not having a unicode_title (#28)
Mistakenly forgot to check for presence of unicode title and use the appropriate one.
This commit is contained in:
parent
f32aebdba0
commit
68a7243a66
|
@ -27,11 +27,12 @@ export default DiscourseRoute.extend({
|
||||||
const model = this.currentModel;
|
const model = this.currentModel;
|
||||||
const pageTitle = I18n.t("docs.title");
|
const pageTitle = I18n.t("docs.title");
|
||||||
if (model.topic.title && model.topic.category_id) {
|
if (model.topic.title && model.topic.category_id) {
|
||||||
|
const title = model.topic.unicode_title || model.topic.title;
|
||||||
const categoryName = this.site.categories.findBy(
|
const categoryName = this.site.categories.findBy(
|
||||||
"id",
|
"id",
|
||||||
model.topic.category_id
|
model.topic.category_id
|
||||||
).name;
|
).name;
|
||||||
return `${model.topic.unicode_title} - ${categoryName} - ${pageTitle}`;
|
return `${title} - ${categoryName} - ${pageTitle}`;
|
||||||
} else {
|
} else {
|
||||||
return pageTitle;
|
return pageTitle;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue