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
This commit is contained in:
Sean Dague 2016-05-12 12:45:27 -04:00
parent a919e34237
commit 05a52a95f2

View File

@ -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);
}
}