Skip to content
Snippets Groups Projects
Commit 3ae05c5a authored by Özgür Adem Işıklı's avatar Özgür Adem Işıklı :rocket: Committed by Kushal Pandya
Browse files

Removes all deprecated GlDeprecatedButtons buttons in the Releases page

parent 59e842e5
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ import {
GlProgressBar,
GlLink,
GlBadge,
GlDeprecatedButton,
GlButton,
GlTooltipDirective,
GlSprintf,
} from '@gitlab/ui';
......@@ -17,7 +17,7 @@ export default {
GlProgressBar,
GlLink,
GlBadge,
GlDeprecatedButton,
GlButton,
GlSprintf,
},
directives: {
......@@ -134,13 +134,9 @@ export default {
<span :key="'bullet-' + milestone.id" class="append-right-4">&bull;</span>
</template>
<template v-if="shouldRenderShowMoreLink(index)">
<gl-deprecated-button
:key="'more-button-' + milestone.id"
variant="link"
@click="toggleShowAll"
>
<gl-button :key="'more-button-' + milestone.id" variant="link" @click="toggleShowAll">
{{ moreText }}
</gl-deprecated-button>
</gl-button>
</template>
</template>
</div>
......
---
title: Updated deprecated buttons in release page
merge_request: 30941
author: Özgür Adem Işıklı @iozguradem
type: added
import { mount } from '@vue/test-utils';
import { GlProgressBar, GlLink, GlBadge, GlDeprecatedButton } from '@gitlab/ui';
import { GlProgressBar, GlLink, GlBadge, GlButton } from '@gitlab/ui';
import { trimText } from 'helpers/text_helper';
import ReleaseBlockMilestoneInfo from '~/releases/components/release_block_milestone_info.vue';
import { milestones as originalMilestones } from '../mock_data';
......@@ -106,7 +106,7 @@ describe('Release block milestone info', () => {
const clickShowMoreFewerButton = () => {
milestoneListContainer()
.find(GlDeprecatedButton)
.find(GlButton)
.trigger('click');
return wrapper.vm.$nextTick();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment