Commit 2aa1e711 authored by Libor Vanc's avatar Libor Vanc Committed by Andrew Fontaine

Replace deprecated button syntax in empty_state

parent be1011fe
<script> <script>
import { GlDeprecatedButton } from '@gitlab/ui'; import { GlButton } from '@gitlab/ui';
export default { export default {
name: 'PipelinesEmptyState', name: 'PipelinesEmptyState',
components: { components: {
GlDeprecatedButton, GlButton,
}, },
props: { props: {
helpPagePath: { helpPagePath: {
...@@ -43,13 +43,14 @@ export default { ...@@ -43,13 +43,14 @@ export default {
</p> </p>
<div class="text-center"> <div class="text-center">
<gl-deprecated-button <gl-button
:href="helpPagePath" :href="helpPagePath"
variant="primary" variant="info"
category="primary"
class="js-get-started-pipelines" class="js-get-started-pipelines"
> >
{{ s__('Pipelines|Get started with Pipelines') }} {{ s__('Pipelines|Get started with Pipelines') }}
</gl-deprecated-button> </gl-button>
</div> </div>
</template> </template>
......
---
title: Replace deprecated button syntax in empty_state
merge_request: 38730
author:
type: performance
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