refetch missions on list load

This commit is contained in:
Julian Krauser 2025-03-09 09:55:12 +01:00
parent 4e35434591
commit 582a974161

View file

@ -59,7 +59,7 @@ export default defineComponent({
...mapState(useAbilityStore, ["can"]),
},
mounted() {
this.fetchMissions();
this.fetchMissions(0, 25, true);
},
methods: {
...mapActions(useMissionStore, ["fetchMissions", "createMission"]),