summaryrefslogtreecommitdiff
path: root/pages/models/_id.vue
diff options
context:
space:
mode:
Diffstat (limited to 'pages/models/_id.vue')
-rw-r--r--pages/models/_id.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/pages/models/_id.vue b/pages/models/_id.vue
index 48ff0eb..1017032 100644
--- a/pages/models/_id.vue
+++ b/pages/models/_id.vue
@@ -139,6 +139,11 @@ export default {
boxFilesToDownload: false,
};
},
+ head() {
+ return {
+ title: this.model.name + " ยท Verden",
+ };
+ },
components: {
ModelStl,
ModelObj,
@@ -148,7 +153,7 @@ export default {
this.id = this.$route.params.id;
this.baseAPI = this.$config.api;
- this.$store.dispatch("models/findModal", this.id).then((response) => {
+ this.$store.dispatch("models/findModel", this.id).then((response) => {
if (response.status != 200) {
window.location.href = "/models";
} else {