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.
1 parent 1b9b852 commit 9c1f2ffCopy full SHA for 9c1f2ff
extensions/realtime/js/src/forum/extend/DiscussionList/NewActivity.js
@@ -67,7 +67,8 @@ export default function () {
67
// When we're viewing a specific tag but the discussion has no such tags, ignore it.
68
if (discussion && activeTag && discussion.tags?.()) {
69
// Tag is not assigned to this discussion.
70
- if (discussion.tags().indexOf(activeTag.id()) === -1) return;
+ const tagIds = discussion.tags().map((tag) => tag.id());
71
+ if (tagIds.indexOf(activeTag.id()) === -1) return;
72
}
73
74
if (
0 commit comments