diff --git a/assets/components/actors/actor.vue b/assets/components/actors/actor.vue index 65bde745..d8122dc9 100644 --- a/assets/components/actors/actor.vue +++ b/assets/components/actors/actor.vue @@ -303,8 +303,8 @@ import Gender from './gender.vue'; import Social from './social.vue'; async function fetchActor() { - this.actor = await this.$store.dispatch('fetchActorBySlug', { - actorSlug: this.$route.params.actorSlug, + this.actor = await this.$store.dispatch('fetchActorById', { + actorId: Number(this.$route.params.actorId), range: this.$route.params.range, }); } diff --git a/assets/components/header/filters.vue b/assets/components/header/filters.vue index 31c282a9..36343d5f 100644 --- a/assets/components/header/filters.vue +++ b/assets/components/header/filters.vue @@ -1,72 +1,41 @@