From 86d8c2a78e3e9834bcb59a94041be6f9e40c7f98 Mon Sep 17 00:00:00 2001 From: Rydkin Maxim Date: Mon, 27 Mar 2017 21:14:17 +0300 Subject: [PATCH] remove redundant `pipeline` --- app/presenters/ci/pipeline_status_badge_presenter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/presenters/ci/pipeline_status_badge_presenter.rb b/app/presenters/ci/pipeline_status_badge_presenter.rb index bc6601c8a7f..ac6325dd5fa 100644 --- a/app/presenters/ci/pipeline_status_badge_presenter.rb +++ b/app/presenters/ci/pipeline_status_badge_presenter.rb @@ -7,7 +7,7 @@ module Ci end def status_title - "Pipeline is redundant and is auto-canceled by Pipeline ##{pipeline.auto_canceled_by_id}" if auto_canceled? + "Pipeline is redundant and is auto-canceled by Pipeline ##{auto_canceled_by_id}" if auto_canceled? end end end