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 831e698 commit 248ff4bCopy full SHA for 248ff4b
js/activity/feed.js
@@ -294,6 +294,11 @@ function createActivityFeed(options) {
294
295
if (!eventType) return; // don't display if event not handled above
296
297
+ // truncate AI reviews to avoid flooding the feed
298
+ if (field.actor.login === "coderabbitai[bot]") {
299
+ content = "";
300
+ }
301
+
302
if (!$(".feed-container div").length) $(".feed-container").html("");
303
304
// Define a template using a template literal
theme/templates/page-activity.html
@@ -1,4 +1,4 @@
1
{% extends "page.html" %}
2
{% block scripts %}
3
- <script src="{{ SITEURL }}/theme/js/activity.min.js?v=1"></script>
+ <script src="{{ SITEURL }}/theme/js/activity.min.js?v=2"></script>
4
{% endblock %}
0 commit comments