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.
2 parents 8658c7d + a0e9494 commit 39f00e0Copy full SHA for 39f00e0
1 file changed
src/components/ActivityList.vue
@@ -87,7 +87,7 @@ export default {
87
// to tell the backend to fetch all activites related to cards of a given board
88
activities = activities.filter((activity) => {
89
return (activity.object_type === 'deck_board' && activity.object_id === this.objectId)
90
- || (activity.object_type === 'deck_card' && activity.subject_rich[1].board.id === this.objectId)
+ || (activity.object_type === 'deck_card' && activity.subject_rich[1].board.id === this.objectId.toString())
91
})
92
}
93
this.activities.push(...activities)
0 commit comments