Commit 710961d64d156e970952e30524f67aa0e208dce9
Exists in
master
and in
1 other branch
Merge pull request #437 from isc/patch-1
Removed typo in comment deletion confirm dialog
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/problems/show.html.haml
| ... | ... | @@ -37,7 +37,7 @@ |
| 37 | 37 | - else |
| 38 | 38 | %span.comment-info |
| 39 | 39 | = time_ago_in_words(comment.created_at, true) << " ago by [Unknown User]" |
| 40 | - %span.delete= link_to '✘'.html_safe, [@app, @problem, comment], :method => :delete, :data => { :confirm => "Are sure you don't need this comment?" }, :class => "destroy-comment" | |
| 40 | + %span.delete= link_to '✘'.html_safe, [@app, @problem, comment], :method => :delete, :data => { :confirm => "Are you sure you don't need this comment?" }, :class => "destroy-comment" | |
| 41 | 41 | %tr |
| 42 | 42 | %td= simple_format comment.body |
| 43 | 43 | - if @problem.comments_allowed? | ... | ... |