Skip to content

Commit

Permalink
Fix collapse on problems list
Browse files Browse the repository at this point in the history
We have project names with `.`, that was causing the issue. Now apart
from replacing `:` in the project name we also substitute `.` with `_`.

Fix #8749.
  • Loading branch information
David Kang committed Nov 20, 2019
1 parent 81a4a88 commit 263b95f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:ruby
max_shown = 5
project_class = staging_project.name.tr(':', '_')
project_class = staging_project.name.tr(':.', '_')
item_project_class = 'hidden-item-' + project_class
checks_problems = staging_project.checks.failed
build_problems = staging_project.problems
Expand Down

0 comments on commit 263b95f

Please sign in to comment.