Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(comments): Correctly await the getComments() call
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed Oct 10, 2025
commit 95704cdf576ec0ca655ca265e34235541fc4ead9
2 changes: 1 addition & 1 deletion apps/comments/src/views/Comments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default {
async update(resourceId) {
this.currentResourceId = resourceId
this.resetState()
this.getComments()
await this.getComments()
},

/**
Expand Down