-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Low
-
Component/s: Database
-
None
-
1
-
Minor
Issue Summary
On a Confluence Database page, the per-cell comment indicators and the comments sidebar continue to show inline comments as active even after every thread on the cell has been resolved. The badge cannot be cleared from the UI.
Steps to Reproduce
- Open a Confluence Database page that has inline comments on at least one cell.
- Resolve every inline comment on that cell.
- Reload the page and observe the cell's comment indicator and the sidebar.
- In DevTools → Network, inspect the `CommentList` GraphQL request that includes an `inlineMarkerRef` variable.
Expected Results
When `type:[UNRESOLVED]` is supplied, the resolver excludes nodes where `inlineResolveProperties.resolved == true` regardless of whether `inlineMarkerRef` is also provided. The cell badge is cleared once all threads are resolved, the sidebar shows no entries for resolved-only cells, and `totalCount` reflects only unresolved comments.
Actual Results
The cell still displays an active comment count and the sidebar still lists the resolved comments. The `CommentList` response with `type:[UNRESOLVED]` returns resolved comments and an inflated `totalCount`.
Workaround
Currently there is no known workaround for this behavior. A workaround will be added here when available