summaryrefslogtreecommitdiff
path: root/app/views/admin/health_check/show.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/health_check/show.html.haml')
-rw-r--r--app/views/admin/health_check/show.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/admin/health_check/show.html.haml b/app/views/admin/health_check/show.html.haml
index a289cea0d5a..98427cb6419 100644
--- a/app/views/admin/health_check/show.html.haml
+++ b/app/views/admin/health_check/show.html.haml
@@ -1,7 +1,7 @@
- page_title _('Health Check')
- no_errors = @errors.blank?
-%h3.page-title= page_title
+%h1.page-title.gl-font-size-h-display= page_title
.bs-callout.clearfix
.float-left
%p
@@ -23,8 +23,8 @@
%code= metrics_url(token: Gitlab::CurrentSettings.health_check_access_token)
= render_if_exists 'admin/health_check/health_check_url'
%hr
-.gl-card
- .gl-card-header
+= render Pajamas::CardComponent.new do |c|
+ = c.header do
Current Status:
- if no_errors
= sprite_icon('check', css_class: 'cgreen')
@@ -32,7 +32,7 @@
- else
= sprite_icon('warning-solid', css_class: 'cred')
#{ s_('HealthCheck|Unhealthy') }
- .gl-card-body
+ = c.body do
- if no_errors
#{ s_('HealthCheck|No Health Problems Detected') }
- else