Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion taiga/timeline/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ def on_new_history_entry(sender, instance, created, **kwargs):
if instance._importing:
return

if instance.is_hidden:
# Allow entries with comments to appear in timeline even if marked as hidden
# This ensures that comments are always visible in the timeline
if instance.is_hidden and not instance.comment:
return None

if instance.user["pk"] is None:
Expand Down