Skip to content

Commit

Permalink
Merge pull request #5166 from eduardoj/fix/incremental_diff_link_commas
Browse files Browse the repository at this point in the history
Remove space before commas
  • Loading branch information
bgeuken committed Jun 20, 2018
2 parents 0775696 + 8606f1e commit 191c23b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
This request supersedes:
- superseding.each_with_index do |bs_request, index|
= link_to "request #{bs_request.number}", request_show_path(number: bs_request.number)
= surround '(', ')' do
= link_to 'Show diff', request_show_path(number: bs_request.superseded_by, diff_to_superseded: bs_request.number)
= ', ' if index < superseding.length - 1
= succeed (', ' if index < superseding.length - 1) do
= surround '(', ')' do
= link_to('Show diff', request_show_path(number: bs_request.superseded_by, diff_to_superseded: bs_request.number))
- if superseded_by.present?
.grid_16.alpha.omega.box-invisible
.ui-state-info.ui-corner-all.ui-widget-shadow.padding-10pt#request-superseded-by-hint
Expand Down

0 comments on commit 191c23b

Please sign in to comment.