Commit c0c49591 authored by Vamsi Vempati's avatar Vamsi Vempati Committed by Kushal Pandya

Migrate to shared alert HAML partial in _commits.html.haml

parent ca468e74
...@@ -34,10 +34,11 @@ ...@@ -34,10 +34,11 @@
= render partial: 'projects/commits/commit', collection: context_commits, locals: { project: project, ref: ref, merge_request: merge_request } = render partial: 'projects/commits/commit', collection: context_commits, locals: { project: project, ref: ref, merge_request: merge_request }
- if hidden > 0 - if hidden > 0
%li.gl-alert.gl-alert-warning %li
.gl-alert-container = render 'shared/global_alert',
= sprite_icon('warning', size: 16, css_class: 'gl-icon gl-alert-icon gl-alert-icon-no-title') variant: :warning,
.gl-alert-content dismissible: false do
.gl-alert-body
= n_('%s additional commit has been omitted to prevent performance issues.', '%s additional commits have been omitted to prevent performance issues.', hidden) % number_with_delimiter(hidden) = n_('%s additional commit has been omitted to prevent performance issues.', '%s additional commits have been omitted to prevent performance issues.', hidden) % number_with_delimiter(hidden)
- if can_update_merge_request && context_commits&.empty? - if can_update_merge_request && context_commits&.empty?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment