diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f42bae2d..7ee31f880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ [#1684](https://github.com/nextcloud/cookbook/pull/1684) @dependabot @christianlupus - Update dependency @nextcloud/event-bus and allow automatic updates of dependencies [#1680](https://github.com/nextcloud/cookbook/pull/1680) @dependabot +- Fix bug in browser console + [#1686](https://github.com/nextcloud/cookbook/pull/1686) @christianlupus ## 0.10.2 - 2023-03-24 diff --git a/src/components/AppMain.vue b/src/components/AppMain.vue index 79e2859fb..9fd03c243 100644 --- a/src/components/AppMain.vue +++ b/src/components/AppMain.vue @@ -46,11 +46,12 @@ export default { } }, watch: { - $route(to, from) { - this.$log.debug( - this.$window.isSameBaseRoute(from.fullPath, to.fullPath) - ) - }, + // This might be handy when routing of Vue components needs fixing. + // $route(to, from) { + // this.$log.debug( + // this.$window.isSameBaseRoute(from.fullPath, to.fullPath) + // ) + // }, }, mounted() { this.$log.info("AppMain mounted")