diff options
-rw-r--r-- | app/helpers/issues_helper.rb | 6 | ||||
-rw-r--r-- | app/helpers/notes_helper.rb | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index a5b393c1e3c..bcf108c5c48 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -67,8 +67,10 @@ module IssuesHelper ts = "#{time_ago_with_tooltip(issue.created_at, 'bottom', 'note_created_ago')}" if issue.updated_at != issue.created_at ts << capture_haml do - haml_tag :small do - haml_concat " (Edited #{time_ago_with_tooltip(issue.updated_at, 'bottom', 'issue_edited_ago')})" + haml_tag :span do + haml_concat '·' + haml_concat '<i class="fa fa-edit" title="edited"></i> ' + haml_concat time_ago_with_tooltip(issue.updated_at, 'bottom', 'issue_edited_ago') end end end diff --git a/app/helpers/notes_helper.rb b/app/helpers/notes_helper.rb index 6d2244b8714..8f493f5d331 100644 --- a/app/helpers/notes_helper.rb +++ b/app/helpers/notes_helper.rb @@ -20,8 +20,10 @@ module NotesHelper ts = "#{time_ago_with_tooltip(note.created_at, 'bottom', 'note_created_ago')}" if note.updated_at != note.created_at ts << capture_haml do - haml_tag :small do - haml_concat " (Edited #{time_ago_with_tooltip(note.updated_at, 'bottom', 'note_edited_ago')})" + haml_tag :span do + haml_concat '·' + haml_concat '<i class="fa fa-edit" title="edited"></i> ' + haml_concat time_ago_with_tooltip(note.updated_at, 'bottom', 'note_edited_ago') end end end |