diff options
author | Fatih Acet <acetfatih@gmail.com> | 2019-07-25 22:18:49 +0000 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2019-07-25 22:18:49 +0000 |
commit | 420d546baffbfff05406ce832b076b28585496c5 (patch) | |
tree | 20f72017d0d723dabb221be0153b8db622945432 /app | |
parent | 3736e1de27ab05a280cc78e6542b4e41f94aa805 (diff) | |
parent | 9aa75af34ee5a55d50ca9876269f2c1b4f12b003 (diff) | |
download | gitlab-ce-420d546baffbfff05406ce832b076b28585496c5.tar.gz |
Merge branch '65088-incorrect-message-interpolation-on-project-listing' into 'master'
Resolve "Incorrect message interpolation on project listing"
Closes #65088
See merge request gitlab-org/gitlab-ce!31121
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 |