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:
Diffstat (limited to 'app/assets/javascripts/diffs/components/no_changes.vue')
-rw-r--r--app/assets/javascripts/diffs/components/no_changes.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/diffs/components/no_changes.vue b/app/assets/javascripts/diffs/components/no_changes.vue
index 09cb542c3dc..5fd68471094 100644
--- a/app/assets/javascripts/diffs/components/no_changes.vue
+++ b/app/assets/javascripts/diffs/components/no_changes.vue
@@ -1,12 +1,12 @@
<script>
import { mapGetters } from 'vuex';
import { escape as esc } from 'lodash';
-import { GlButton } from '@gitlab/ui';
+import { GlDeprecatedButton } from '@gitlab/ui';
import { __, sprintf } from '~/locale';
export default {
components: {
- GlButton,
+ GlDeprecatedButton,
},
props: {
changesEmptyStateIllustration: {
@@ -43,9 +43,9 @@ export default {
<div class="text-content text-center">
<span v-html="emptyStateText"></span>
<div class="text-center">
- <gl-button :href="getNoteableData.new_blob_path" variant="success">{{
+ <gl-deprecated-button :href="getNoteableData.new_blob_path" variant="success">{{
__('Create commit')
- }}</gl-button>
+ }}</gl-deprecated-button>
</div>
</div>
</div>