diff options
author | Alex Kalderimis <alex.kalderimis@gmail.com> | 2019-07-24 18:39:30 -0400 |
---|---|---|
committer | Alex Kalderimis <alex.kalderimis@gmail.com> | 2019-07-24 18:49:11 -0400 |
commit | 9aa75af34ee5a55d50ca9876269f2c1b4f12b003 (patch) | |
tree | 4c84b32ba783c68bec80e9b2609697a229983ee8 /app | |
parent | 7fa0c7662b88efa72d29087a273f0b6c1e484b3e (diff) | |
download | gitlab-ce-9aa75af34ee5a55d50ca9876269f2c1b4f12b003.tar.gz |
Fix incorrect use of message interpolation65088-incorrect-message-interpolation-on-project-listing
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/65088
Diffstat (limited to 'app')
-rw-r--r-- | app/views/shared/projects/_project.html.haml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/shared/projects/_project.html.haml b/app/views/shared/projects/_project.html.haml index c4d1bdad2c4..f40a9cffb29 100644 --- a/app/views/shared/projects/_project.html.haml +++ b/app/views/shared/projects/_project.html.haml @@ -89,4 +89,6 @@ %span.icon-wrapper.pipeline-status = render 'ci/status/icon', status: project.commit.last_pipeline.detailed_status(current_user), type: 'commit', tooltip_placement: 'top', path: pipeline_path .updated-note - %span #{_('Updated')} #{updated_tooltip} + %span + = _('Updated') + = updated_tooltip |