From 95704cdf576ec0ca655ca265e34235541fc4ead9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 9 Oct 2025 11:07:17 +0200 Subject: [PATCH] fix(comments): Correctly await the getComments() call Signed-off-by: Joas Schilling --- apps/comments/src/views/Comments.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/comments/src/views/Comments.vue b/apps/comments/src/views/Comments.vue index 3862bebc25b..39ee7ad07f1 100644 --- a/apps/comments/src/views/Comments.vue +++ b/apps/comments/src/views/Comments.vue @@ -152,7 +152,7 @@ export default { async update(resourceId) { this.currentResourceId = resourceId this.resetState() - this.getComments() + await this.getComments() }, /**