Commit aeec80cf authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'eread/migrate-checkout-step-summary-button' into 'master'

Migrate checkout step summary buttons away from legacy buttons

Closes #219800

See merge request gitlab-org/gitlab!39561
parents 7ccd8dd9 9d421b3f
<script> <script>
import { GlDeprecatedButton } from '@gitlab/ui'; import { GlButton } from '@gitlab/ui';
import { s__ } from '~/locale'; import { s__ } from '~/locale';
export default { export default {
components: { components: {
GlDeprecatedButton, GlButton,
}, },
props: { props: {
isEditable: { isEditable: {
...@@ -27,7 +27,7 @@ export default { ...@@ -27,7 +27,7 @@ export default {
<slot></slot> <slot></slot>
</div> </div>
<div v-if="isEditable" class="d-flex flex-column justify-content-center"> <div v-if="isEditable" class="d-flex flex-column justify-content-center">
<gl-deprecated-button @click="edit">{{ $options.i18n.edit }}</gl-deprecated-button> <gl-button @click="edit">{{ $options.i18n.edit }}</gl-button>
</div> </div>
</div> </div>
</template> </template>
---
title: Migrate checkout step summary buttons away from legacy buttons
merge_request: 39561
author:
type: other
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