Commit 006c2cca authored by clenneville's avatar clenneville

Update alert to gl component

parent 8d9b0d04
<script>
/* eslint-disable vue/no-v-html */
import { GlLoadingIcon, GlButton } from '@gitlab/ui';
import { GlLoadingIcon, GlButton, GlAlert, } from '@gitlab/ui';
export default {
components: {
GlLoadingIcon,
GlButton,
GlAlert,
},
props: {
isLoading: {
......@@ -59,7 +60,7 @@ export default {
{{ __('Start Web Terminal') }}
</gl-button>
</p>
<div v-if="!isValid && message" class="bs-callout gl-text-left" v-html="message"></div>
<gl-alert v-if="!isValid && message" variant="tip" :dismissable="false" v-html="message"></gl-alert>
<p v-else>
<a
v-if="helpPath"
......
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