From 05a52a95f2c6686b5d61212e66c2d53f9bbcc56b Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 12 May 2016 12:45:27 -0400 Subject: [PATCH] fix typo in hideci.js During the refactor one of the accumulators wasn't renamed correctly, which causes a full stop javascript break if we fall into that conditional block. This fixes that typo. Change-Id: Ib79805c87a3917d36b69e3b7d621c240b851f7b9 --- modules/openstack_project/files/gerrit/hideci.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/files/gerrit/hideci.js b/modules/openstack_project/files/gerrit/hideci.js index 87ed854727..03f6df0bbf 100644 --- a/modules/openstack_project/files/gerrit/hideci.js +++ b/modules/openstack_project/files/gerrit/hideci.js @@ -152,7 +152,7 @@ var ci_group_by_ci_pipeline = function(current, comments) { ci_pipelines.push(name_pipeline); ci_pipeline_comments.push([comment]); } else { - pipeline_comments[index].push(comment); + ci_pipeline_comments[index].push(comment); } }