diff --git a/app/assets/javascripts/initializers/initializeCommentsPage.js.erb b/app/assets/javascripts/initializers/initializeCommentsPage.js.erb
index 9bdb61da8..92d26dbfd 100644
--- a/app/assets/javascripts/initializers/initializeCommentsPage.js.erb
+++ b/app/assets/javascripts/initializers/initializeCommentsPage.js.erb
@@ -173,6 +173,8 @@ function replaceActionButts(el) {
}
function warmNewCommentsArea() {
+ // Ignore when comment is created on /notifications.
+ if (window.location.pathname === "/notifications") { return }
var path = '/stories/warm_comments'+ window.location.pathname
window.fetch(path)
}
diff --git a/app/views/notifications/shared/_comment_box.html.erb b/app/views/notifications/shared/_comment_box.html.erb
index 48c1b6c7c..093a5f882 100644
--- a/app/views/notifications/shared/_comment_box.html.erb
+++ b/app/views/notifications/shared/_comment_box.html.erb
@@ -15,11 +15,21 @@
" alt="Favorite heart button" />
<% if context == "moderation" && current_user.has_role?(:trusted) %>
-