Newly created team project events not loading

Newly created team project events doesn't show up in the Project > Activity > Team tab.

We need to update the filter to include project events with target_type = 'Project'

Implementation Guide

Index: lib/event_filter.rb
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/lib/event_filter.rb b/lib/event_filter.rb
--- a/lib/event_filter.rb	(revision d3c507a0d7da7e207b37ded084e6cf1120d1fa90)
+++ b/lib/event_filter.rb	(date 1757494313686)
@@ -88,7 +88,7 @@
     when TEAM
       in_operator_params(
         array_data: array_data,
-        scope: Event.where(target_type: nil),
+        scope: Event.where(target_type: [nil, Event::TARGET_TYPES[:project].name]),
         order_hint_column: :target_type,
         in_column: :action,
         in_values: Event.actions.values_at(*Event::TEAM_ACTIONS)
Edited by Shane Maglangit