Compare commits

..

2 Commits

Author SHA1 Message Date
ThePendulum 54ef0ff807 1.68.4 2020-01-31 00:13:00 +01:00
ThePendulum c48d04de0f Set page title for networks and tags overviews. 2020-01-31 00:12:58 +01:00
4 changed files with 7 additions and 2 deletions

View File

@ -20,6 +20,7 @@ import Network from '../tile/network.vue';
async function mounted() { async function mounted() {
this.networks = await this.$store.dispatch('fetchNetworks'); this.networks = await this.$store.dispatch('fetchNetworks');
this.pageTitle = 'Networks';
} }
function siteCount() { function siteCount() {
@ -33,6 +34,7 @@ export default {
data() { data() {
return { return {
networks: [], networks: [],
pageTitle: null,
}; };
}, },
computed: { computed: {

View File

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

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.68.3", "version": "1.68.4",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.68.3", "version": "1.68.4",
"description": "All the latest porn releases in one place", "description": "All the latest porn releases in one place",
"main": "src/app.js", "main": "src/app.js",
"scripts": { "scripts": {