Fixed Babel dependencies.

This commit is contained in:
2019-12-15 23:01:48 +01:00
parent 07a6c77ce2
commit 13b45e1709
6 changed files with 76 additions and 288 deletions

View File

@@ -263,7 +263,7 @@ function scrollPhotos(event) {
async function mounted() {
[this.actor] = await Promise.all([
this.$store.dispatch('fetchActors', { actorId: this.$route.params.actorSlug }),
this.$store.dispatch('fetchActors', { actorSlug: this.$route.params.actorSlug }),
this.fetchReleases(),
]);

View File

@@ -15,7 +15,7 @@ import FilterBar from '../header/filter-bar.vue';
import Releases from '../releases/releases.vue';
async function fetchReleases() {
this.releases = await this.$store.dispatch('fetchReleases');
this.releases = await this.$store.dispatch('fetchReleases', { limit: 100 });
}
async function mounted() {