We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3062c40 commit 94b0287Copy full SHA for 94b0287
frontend/src/views/camp/checklistOverview/ChecklistOverview.vue
@@ -77,7 +77,6 @@ export default {
77
.$reload()
78
.then(({ items }) => {
79
this.processChecklistItems(items)
80
- this.loading = false
81
}),
82
this.api
83
.get()
@@ -86,7 +85,9 @@ export default {
86
85
camp: this.camp._meta.self,
87
})
88
.$loadItems(),
89
- ])
+ ]).then(() => {
+ this.loading = false
90
+ })
91
},
92
methods: {
93
processChecklistItems(items) {
0 commit comments