Migrate to GlButton in dependency list

parent bff7508d
<script>
import { mapActions, mapGetters, mapState } from 'vuex';
import {
GlEmptyState,
GlIcon,
GlLoadingIcon,
GlSprintf,
GlLink,
GlDeprecatedButton,
} from '@gitlab/ui';
import { GlEmptyState, GlIcon, GlLoadingIcon, GlSprintf, GlLink, GlButton } from '@gitlab/ui';
import { __ } from '~/locale';
import DependenciesActions from './dependencies_actions.vue';
import DependencyListIncompleteAlert from './dependency_list_incomplete_alert.vue';
......@@ -25,7 +18,7 @@ export default {
GlLoadingIcon,
GlSprintf,
GlLink,
GlDeprecatedButton,
GlButton,
DependencyListIncompleteAlert,
DependencyListJobFailedAlert,
PaginatedDependenciesTable,
......@@ -133,9 +126,9 @@ export default {
:svg-path="emptyStateSvgPath"
>
<template #actions>
<gl-deprecated-button variant="info" :href="emptyStateOptions.link">
<gl-button variant="info" :href="emptyStateOptions.link">
{{ emptyStateOptions.buttonLabel }}
</gl-deprecated-button>
</gl-button>
</template>
</gl-empty-state>
......
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