Fix page title for dashboard (#181)

* Fix page title for dashboard

* Fix Notifications page title

* Fix My Mods title

* Fix M lowercase
This commit is contained in:
Mysterious_Dev 2021-04-25 04:51:39 +02:00 committed by GitHub
parent 3033376028
commit a872058704
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 16 additions and 1 deletions

View File

@ -13,7 +13,7 @@
</nuxt-link>
<nuxt-link :to="'/dashboard/follows'" class="tab last">
<FollowIcon />
Followed Mods
Followed mods
</nuxt-link>
<nuxt-link
v-if="

View File

@ -83,6 +83,9 @@ export default {
this.mods.splice(index, 1)
},
},
head: {
title: 'Followed mods - Modrinth',
},
}
</script>

View File

@ -106,6 +106,9 @@ export default {
this.$nuxt.$loading.finish()
},
},
head: {
title: 'Notifications - Modrinth',
},
}
</script>

View File

@ -104,6 +104,9 @@ export default {
})
},
},
head: {
title: 'Privacy Settings - Modrinth',
},
}
</script>

View File

@ -70,6 +70,9 @@ export default {
mods: res.data,
}
},
head: {
title: 'My mods - Modrinth',
},
}
</script>

View File

@ -210,6 +210,9 @@ export default {
this.$refs.delete_popup.show()
},
},
head: {
title: 'Settings - Modrinth',
},
}
</script>