diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-07 12:10:27 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-07 12:10:27 +0100 |
commit | 152c2b5b703b4496c4034e4d65023dd95669c8ac (patch) | |
tree | 9826123d918b597f1fc2db9ed22b6d9811c91bec /app/helpers | |
parent | db2617fd5f690282a7e844a361eac9da6aeea8c7 (diff) | |
download | gitlab-ce-152c2b5b703b4496c4034e4d65023dd95669c8ac.tar.gz |
Add new merge request widget state for blocked pipeline
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/ci_status_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb index 94f3b480178..2c2c408b035 100644 --- a/app/helpers/ci_status_helper.rb +++ b/app/helpers/ci_status_helper.rb @@ -48,6 +48,8 @@ module CiStatusHelper 'icon_status_created' when 'skipped' 'icon_status_skipped' + when 'manual' + 'icon_status_manual' else 'icon_status_canceled' end |