From 2c7dc052f90d2bb4f0ce3bbf3a16759e2ff39609 Mon Sep 17 00:00:00 2001 From: brian mwenda Date: Sat, 6 Sep 2025 20:07:35 +0300 Subject: [PATCH] fix: ensure comments are visible in timeline even if the entry is marked as hidden --- taiga/timeline/signals.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/taiga/timeline/signals.py b/taiga/timeline/signals.py index 59f41f93e..491dd062e 100644 --- a/taiga/timeline/signals.py +++ b/taiga/timeline/signals.py @@ -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: