Browse Source

bugfix tocitem

Bachir Soussi Chiadmi 3 years ago
parent
commit
61303fde4d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/components/Content/TocItem.vue

+ 3 - 1
src/components/Content/TocItem.vue

@@ -100,7 +100,9 @@ export default {
   //   console.log('editionid', this.editionid)
   // },
   beforeMount () {
-    this.isOpened = this.$route.params.textid.indexOf(this.item.uuid) >= 0
+    if (typeof this.$route.params.textid !== 'undefined') {
+      this.isOpened = this.$route.params.textid.indexOf(this.item.uuid) >= 0
+    }
   },
   methods: {
     onclick (e) {