diff --git a/src/components/Team.vue b/src/components/Team.vue index 56ac25a4a..c9b453c11 100644 --- a/src/components/Team.vue +++ b/src/components/Team.vue @@ -24,7 +24,7 @@ > @@ -62,7 +62,7 @@ export default { for (var i = 0; i < this.tags.length; i++) { if (this.tags[i].node.title == selected) { - activeIndex = i; + activeIndex = i + 1; } } return { @@ -78,11 +78,6 @@ export default { tags: {}, tagsField: String, }, - computed: { - url: function () { - return window.location.href + "#" + this.selected; - }, - }, methods: { setSelected: function (tag, index) { this.selected = tag; diff --git a/src/templates/People.vue b/src/templates/People.vue index 3f891177c..d9a167942 100644 --- a/src/templates/People.vue +++ b/src/templates/People.vue @@ -1,8 +1,17 @@