diff --git a/frontend/src/views/camp/Dashboard.vue b/frontend/src/views/camp/Dashboard.vue index db7920d2936..f26201d081f 100644 --- a/frontend/src/views/camp/Dashboard.vue +++ b/frontend/src/views/camp/Dashboard.vue @@ -404,6 +404,11 @@ export default { const { categories, periods, collaborators, progressLabels } = await loadAndProcessCollections(this.camp()) + const periodHrefs = await this.camp() + .periods() + .items.map((period) => period._meta.self) + await this.api.get().days({ periods: periodHrefs }) + const queryFilters = processRouteQuery(this.$route.query) const { period, responsible, category, progressLabel } = { ...this.filter,