Skip to content

Commit 94b0287

Browse files
committed
..
1 parent 3062c40 commit 94b0287

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

frontend/src/views/camp/checklistOverview/ChecklistOverview.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ export default {
7777
.$reload()
7878
.then(({ items }) => {
7979
this.processChecklistItems(items)
80-
this.loading = false
8180
}),
8281
this.api
8382
.get()
@@ -86,7 +85,9 @@ export default {
8685
camp: this.camp._meta.self,
8786
})
8887
.$loadItems(),
89-
])
88+
]).then(() => {
89+
this.loading = false
90+
})
9091
},
9192
methods: {
9293
processChecklistItems(items) {

0 commit comments

Comments
 (0)