summaryrefslogtreecommitdiff
path: root/app/views/ci/status/_badge.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/ci/status/_badge.html.haml')
-rw-r--r--app/views/ci/status/_badge.html.haml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/ci/status/_badge.html.haml b/app/views/ci/status/_badge.html.haml
index 601fb7f0f3f..c00c7f7407e 100644
--- a/app/views/ci/status/_badge.html.haml
+++ b/app/views/ci/status/_badge.html.haml
@@ -1,7 +1,8 @@
- status = local_assigns.fetch(:status)
+- link = local_assigns.fetch(:link, true)
- css_classes = "ci-status ci-#{status.group}"
-- if status.has_details?
+- if link && status.has_details?
= link_to status.details_path, class: css_classes do
= custom_icon(status.icon)
= status.text