diff options
author | Mike Greiling <mike@pixelcog.com> | 2016-12-08 16:13:23 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2016-12-10 00:57:23 -0600 |
commit | 7f3fc26ec98193fa0c3bfeb7b78c81176bb9c689 (patch) | |
tree | 9c47f4e7aca154f02acf6d89d2e11fcfc761296c /app | |
parent | 68c1e3a1568d9f61bf1e01d6ff55ce59c5c3eaaf (diff) | |
download | gitlab-ce-7f3fc26ec98193fa0c3bfeb7b78c81176bb9c689.tar.gz |
fix failing tests
Diffstat (limited to 'app')
-rw-r--r-- | app/views/shared/snippets/_snippet.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/shared/snippets/_snippet.html.haml b/app/views/shared/snippets/_snippet.html.haml index 95985ad6afb..65946910529 100644 --- a/app/views/shared/snippets/_snippet.html.haml +++ b/app/views/shared/snippets/_snippet.html.haml @@ -21,9 +21,9 @@ .snippet-info #{snippet.to_reference} · - authored #{time_ago_with_tooltip(snippet.created_at, placement: 'bottom')} by + authored #{time_ago_with_tooltip(snippet.created_at, placement: 'bottom', html_class: 'snippet-created-ago')} by = link_to user_snippets_path(snippet.author) do = snippet.author_name .pull-right.snippet-updated-at - %span updated #{time_ago_with_tooltip(snippet.updated_at, placement: 'bottom', html_class: 'snippet_update_ago')} + %span updated #{time_ago_with_tooltip(snippet.updated_at, placement: 'bottom')} |