Set page title for networks and tags overviews.

This commit is contained in:
2020-01-31 00:12:58 +01:00
parent aab304dd20
commit c48d04de0f
2 changed files with 5 additions and 0 deletions

View File

@@ -117,6 +117,8 @@ async function mounted() {
return { ...acc, [tag.group.slug]: [tag] };
}, { misc: [] });
this.pageTitle = 'Tags';
}
export default {
@@ -126,6 +128,7 @@ export default {
data() {
return {
tags: {},
pageTitle: null,
};
},
mounted,