Skip to content

Commit bc5c9dc

Browse files
committed
Theme-helpers should look for category.title, no?
1 parent 5bef6a1 commit bc5c9dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/theme/common/template-helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module.exports = {
6969
return `${this.subpage.title} / ${this.settings.site.title}`
7070
}
7171
if (this.page === 'category') {
72-
return `${this.category.name} / ${this.settings.site.title}`
72+
return `${this.category.title} / ${this.settings.site.title}`
7373
}
7474
if (this.page === 'tag') {
7575
return `#${this.tag.tag} / ${this.settings.site.title}`

0 commit comments

Comments
 (0)