Commit baff2562 authored by Brandon Labuschagne's avatar Brandon Labuschagne

Merge branch '242034-runner-limit' into 'master'

Convert shared runner limit alert to gl-alert

See merge request gitlab-org/gitlab!48063
parents 5b138185 eb7d8669
---
title: Convert shared runner limit alert to gl-alert
merge_request: 48063
author:
type: other
<script> <script>
import { GlButton } from '@gitlab/ui'; import { GlButton, GlAlert } from '@gitlab/ui';
import { s__, sprintf } from '~/locale'; import { s__, sprintf } from '~/locale';
export default { export default {
components: { components: {
GlButton, GlButton,
GlAlert,
}, },
props: { props: {
quotaUsed: { quotaUsed: {
...@@ -46,7 +47,7 @@ export default { ...@@ -46,7 +47,7 @@ export default {
}; };
</script> </script>
<template> <template>
<div class="bs-callout bs-callout-danger"> <gl-alert class="gl-my-5" variant="danger" :dismissible="false">
<p> <p>
{{ runnersWarningMessage }} {{ runnersWarningMessage }}
...@@ -64,5 +65,5 @@ export default { ...@@ -64,5 +65,5 @@ export default {
> >
{{ __('Purchase more minutes') }} {{ __('Purchase more minutes') }}
</gl-button> </gl-button>
</div> </gl-alert>
</template> </template>
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