Added rudimentary tags page. Improved social match behavior.
This commit is contained in:
@@ -274,7 +274,7 @@ function scrollDescription(event) {
|
||||
|
||||
async function mounted() {
|
||||
[this.actor] = await Promise.all([
|
||||
this.$store.dispatch('fetchActors', this.$route.params.actorSlug),
|
||||
this.$store.dispatch('fetchActors', { actorId: this.$route.params.actorSlug }),
|
||||
this.fetchReleases(),
|
||||
]);
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
import Actor from '../tile/actor.vue';
|
||||
|
||||
async function mounted() {
|
||||
this.actors = await this.$store.dispatch('fetchActors');
|
||||
this.actors = await this.$store.dispatch('fetchActors', { limit: 1000 });
|
||||
}
|
||||
|
||||
export default {
|
||||
|
||||
Reference in New Issue
Block a user