Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-03 12:09:31 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-03 12:09:31 +0300
commit04baa85554ff13bdd4d6f4e6bb24119d17608fee (patch)
tree7cb9c0977e09d97da340f48703d79b2dbd3579a0 /app/assets/javascripts/pipelines/components/empty_state.vue
parent42f41de46525ce0065f02ee07c1a79f5669526a0 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/pipelines/components/empty_state.vue')
-rw-r--r--app/assets/javascripts/pipelines/components/empty_state.vue12
1 files changed, 8 insertions, 4 deletions
diff --git a/app/assets/javascripts/pipelines/components/empty_state.vue b/app/assets/javascripts/pipelines/components/empty_state.vue
index d16f49f981c..74ada6a4d15 100644
--- a/app/assets/javascripts/pipelines/components/empty_state.vue
+++ b/app/assets/javascripts/pipelines/components/empty_state.vue
@@ -1,10 +1,10 @@
<script>
-import { GlButton } from '@gitlab/ui';
+import { GlDeprecatedButton } from '@gitlab/ui';
export default {
name: 'PipelinesEmptyState',
components: {
- GlButton,
+ GlDeprecatedButton,
},
props: {
helpPagePath: {
@@ -43,9 +43,13 @@ export default {
</p>
<div class="text-center">
- <gl-button :href="helpPagePath" variant="primary" class="js-get-started-pipelines">
+ <gl-deprecated-button
+ :href="helpPagePath"
+ variant="primary"
+ class="js-get-started-pipelines"
+ >
{{ s__('Pipelines|Get started with Pipelines') }}
- </gl-button>
+ </gl-deprecated-button>
</div>
</template>