Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-03-29 21:08:44 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-29 21:08:44 +0300
commit511cd681d4ab0d4263df538b1800058edc07230e (patch)
tree21655596253cef537463ab6a1e368d9a92d44507 /app/views/projects/issues
parent6407b5a4c13e34323d50ac3a39fda74e54d09306 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/projects/issues')
-rw-r--r--app/views/projects/issues/_issue.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/issues/_issue.html.haml b/app/views/projects/issues/_issue.html.haml
index 18975bc3db6..fc6ef2ea153 100644
--- a/app/views/projects/issues/_issue.html.haml
+++ b/app/views/projects/issues/_issue.html.haml
@@ -50,10 +50,10 @@
%ul.controls
- if issue.closed? && issue.moved?
%li.issuable-status
- = _('CLOSED (MOVED)')
+ = render Pajamas::BadgeComponent.new(_('Closed (moved)'), size: 'sm', variant: 'info')
- elsif issue.closed?
%li.issuable-status
- = _('CLOSED')
+ = render Pajamas::BadgeComponent.new(_('Closed'), size: 'sm', variant: 'info')
- if issue.assignees.any?
%li.gl-display-flex
= render 'shared/issuable/assignees', project: @project, issuable: issue