Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
fix(tabs): do not show browser controls in tab settings view
Browse files Browse the repository at this point in the history
  • Loading branch information
herteleo committed Apr 28, 2019
1 parent 5b24f7a commit 933cbe7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/TabMain.vue
Expand Up @@ -46,7 +46,8 @@ export default {
},
computed: {
isActive() {
return this.$route.params.id === this.item.id;
const { params, name } = this.$route;
return params.id === this.item.id && name === 'tabs';
},
},
watch: {
Expand Down

0 comments on commit 933cbe7

Please sign in to comment.