diff --git a/src/views/app/layout/Layout.vue b/src/views/app/layout/Layout.vue
index 6328ab0..46e2543 100644
--- a/src/views/app/layout/Layout.vue
+++ b/src/views/app/layout/Layout.vue
@@ -4,7 +4,7 @@
- -->
+ -->
@@ -23,13 +23,13 @@ export default {
let title = this.$route.meta.title
if (name === "service") {
const ecosystem = this.$route.params.ecosystem
- title = getAlias(getEcosystem(ecosystem))
+ title = getAlias(ecosystem)
}
return title
}
},
- watch:{
- $route(to, from){
+ watch: {
+ $route(to, from) {
document.title = this.title
}
},