Project

General

Profile

Defect #24604 ยป rm24604-correct_typo.patch

Patch against trunk at r16072. - Mischa The Evil, 2016-12-13 21:39

View differences:

app/views/issues/_changesets.html.erb (working copy)
13 13
        <% end %>
14 14
        <br />
15 15
        <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
16
    <div class="wiki changset-comments">
16
    <div class="wiki changeset-comments">
17 17
        <%= format_changeset_comments changeset %>
18 18
    </div>
19 19
    </div>
app/views/repositories/_changeset.html.erb (working copy)
33 33

  
34 34
</div>
35 35

  
36
<div class="wiki changset-comments">
36
<div class="wiki changeset-comments">
37 37
  <%= format_changeset_comments @changeset %>
38 38
</div>
39 39

  
public/stylesheets/application.css (working copy)
492 492
div#issue-changesets div.changeset { padding: 4px;}
493 493
div#issue-changesets div.changeset { border-bottom: 1px solid #ddd; }
494 494
div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
495
.changset-comments {margin-bottom:1em; font-family:}
495
.changeset-comments {margin-bottom:1em; font-family:}
496 496

  
497 497
div.journal {overflow:auto;}
498 498
div.journal.private-notes {border-left:2px solid #d22; padding-left:4px; margin-left:-6px;}
test/functional/repositories_controller_test.rb (working copy)
173 173
    with_settings :commit_logs_formatting => '0' do
174 174
      get :revision, :id => 1, :rev => 1
175 175
      assert_response :success
176
      assert_select '.changset-comments', :text => 'Simple *text*'
176
      assert_select '.changeset-comments', :text => 'Simple *text*'
177 177
    end
178 178
  end
179 179

  
    (1-1/1)