diff --git a/assets/components/actors/actor.vue b/assets/components/actors/actor.vue index ac7e3b95..a5676ed0 100644 --- a/assets/components/actors/actor.vue +++ b/assets/components/actors/actor.vue @@ -253,7 +253,10 @@ import Gender from './gender.vue'; import Social from './social.vue'; async function fetchActor() { - this.actor = await this.$store.dispatch('fetchActors', { actorSlug: this.$route.params.actorSlug }); + this.actor = await this.$store.dispatch('fetchActorBySlug', { + slug: this.$route.params.actorSlug, + range: this.$route.params.range, + }); } function scrollPhotos(event) { diff --git a/assets/components/header/filter-bar.vue b/assets/components/header/filter-bar.vue index 230ed053..8981e914 100644 --- a/assets/components/header/filter-bar.vue +++ b/assets/components/header/filter-bar.vue @@ -1,61 +1,31 @@