Fixes issue #36

This commit is contained in:
weryques 2018-05-10 12:53:32 -03:00
parent 5666002cc5
commit ddf864a0e7
1 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,8 @@ export default {
},
created() {
this.isRepositoryLevel = (this.$route.params.collectionId == undefined);
this.pageTitle = this.$route.meta.title;
document.title = this.$route.meta.title;
this.pageTitle = document.title;
this.arrayRealPath = this.$route.path.split("/");
this.arrayRealPath = this.arrayRealPath.filter((item) => item.length != 0);