Skip to content

Commit 77d660e

Browse files
authored
Merge pull request #55275 from nextcloud/fix/comment-is-limbo
fix(comments): explicitly return limbo status of comment
2 parents 4e57136 + 6f7b3b3 commit 77d660e

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

apps/comments/src/store/deletedCommentLimbo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const useDeletedCommentLimbo = defineStore('deletedCommentLimbo', {
2222
},
2323

2424
checkForId(id) {
25-
this.idsInLimbo.includes(id)
25+
return this.idsInLimbo.includes(id)
2626
},
2727
},
2828
})

dist/7462-7462.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/7462-7462.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comments-comments-app.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comments-comments-app.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comments-comments-tab.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comments-comments-tab.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)