Skip to content

Commit

Permalink
Expose all realated topics in the moderation (#6352)
Browse files Browse the repository at this point in the history
  • Loading branch information
akatsoulas authored Nov 12, 2024
1 parent 147ad44 commit 137dbd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kitsune/flagit/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def flagged_queue(request):
for object in objects:
if object.content_type == question_content_type:
question = object.content_object
available_topics = Topic.active.filter(products=question.product, in_aaq=True)
available_topics = Topic.active.filter(products=question.product)
base_url = reverse("flagit.update", args=[object.id])
form_action = urlparams(base_url, query_dict=None, reason=reason)
object.available_topics = available_topics
Expand Down

0 comments on commit 137dbd8

Please sign in to comment.