Commit 1b88754c authored by Jannik Lehmann's avatar Jannik Lehmann Committed by Ezekiel Kigbo

Replace GlDeprecatedBadge with GlBadge for environment header

This commit replaces the GlDeprecatedBadge with GlBadge for
the environment header & adjusts tests accordingly to
fix this issue https://gitlab.com/gitlab-org/gitlab/-/issues/219525
parent 1aac1232
---
title: Replaced GlDeprecatedBadge for GlBadge in environment header
merge_request: 45768
author:
type: changed
<script>
import { GlLink, GlDeprecatedBadge as GlBadge, GlTooltipDirective, GlIcon } from '@gitlab/ui';
import { GlLink, GlBadge, GlTooltipDirective, GlIcon } from '@gitlab/ui';
import { s__ } from '~/locale';
import ReviewAppLink from '~/vue_merge_request_widget/components/review_app_link.vue';
......@@ -59,7 +59,7 @@ export default {
>
<span class="js-environment-name bold"> {{ environment.name }}</span>
</gl-link>
<gl-badge v-if="environment.within_folder" :pill="true" class="dashboard-card-icon">{{
<gl-badge v-if="environment.within_folder" class="dashboard-card-icon">{{
environment.size
}}</gl-badge>
</div>
......
......@@ -136,7 +136,8 @@ exports[`Environment Header with environments grouped into a folder matches the
<gl-badge-stub
class="dashboard-card-icon"
pill="true"
size="md"
variant="muted"
>
5
</gl-badge-stub>
......
import { shallowMount, mount } from '@vue/test-utils';
import { GlLink, GlDeprecatedBadge as GlBadge, GlIcon } from '@gitlab/ui';
import { GlLink, GlBadge, GlIcon } from '@gitlab/ui';
import component from 'ee/environments_dashboard/components/dashboard/environment_header.vue';
import ReviewAppLink from '~/vue_merge_request_widget/components/review_app_link.vue';
......
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