Skip to content

Commit

Permalink
Merge pull request #6282 from pmattmann/bugfix/checklist-item-parent-…
Browse files Browse the repository at this point in the history
…data

ChecklistItemParent.vue add missing state
  • Loading branch information
pmattmann authored Nov 5, 2024
2 parents 576ffd8 + d96dd6c commit 060ff81
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/src/components/checklist/ChecklistItemParent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ export default {
depth: { type: Number, required: true },
allChecklistNodes: { type: Array, required: true },
},
data() {
return {
checklistNodes: [],
}
},
computed: {
activities() {
const camp = this.checklistItem.checklist().camp()
Expand Down

0 comments on commit 060ff81

Please sign in to comment.