diff --git a/CHANGELOG b/CHANGELOG index 9aa6e3530b43b1c9507094d420a82fd463750345..144ada47ec160d2bcdcc46a1110fc3dab53f5159 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -40,6 +40,7 @@ v 7.10.0 (unreleased) - Make Git-over-SSH errors more descriptive. - Send EmailsOnPush email when branch or tag is created or deleted. - Faster merge request processing for large repository + - Prevent doubling AJAX request with each commit visit via Turbolink v 7.9.0 - Add HipChat integration documentation (Stan Hu) diff --git a/app/views/projects/commit/_commit_box.html.haml b/app/views/projects/commit/_commit_box.html.haml index 7409f702c5d41d371c831845c5c4f98ec4bdd3ec..2579f2cac9288afef6f8408a2ae9725856b30d99 100644 --- a/app/views/projects/commit/_commit_box.html.haml +++ b/app/views/projects/commit/_commit_box.html.haml @@ -48,5 +48,4 @@ = preserve(gfm(escape_once(@commit.description))) :coffeescript - $ -> - $(".commit-info-row.branches").load("#{branches_namespace_project_commit_path(@project.namespace, @project, @commit.id)}") + $(".commit-info-row.branches").load("#{branches_namespace_project_commit_path(@project.namespace, @project, @commit.id)}")