Commit 7020dc6c authored by Jacques Erasmus's avatar Jacques Erasmus

Merge branch 'jnnkl-gl-tablelite-subscription-details' into 'master'

Replace GlTable with GlTableLite for subscription-details-history

See merge request gitlab-org/gitlab!74306
parents b28a328e 5c3a4131
<script>
import { GlBadge, GlTable } from '@gitlab/ui';
import { GlBadge, GlTableLite } from '@gitlab/ui';
import { kebabCase } from 'lodash';
import { capitalizeFirstCharacter } from '~/lib/utils/text_utility';
import {
......@@ -25,7 +25,7 @@ export default {
name: 'SubscriptionDetailsHistory',
components: {
GlBadge,
GlTable,
GlTableLite,
},
props: {
currentSubscriptionId: {
......@@ -136,7 +136,7 @@ export default {
<header>
<h2 class="gl-mb-6 gl-mt-0">{{ $options.i18n.subscriptionHistoryTitle }}</h2>
</header>
<gl-table
<gl-table-lite
:details-td-class="$options.tdClass"
:fields="fields"
:items="subscriptionList"
......@@ -149,6 +149,6 @@ export default {
<template #cell(type)="{ value }">
<gl-badge size="md" variant="info">{{ value }}</gl-badge>
</template>
</gl-table>
</gl-table-lite>
</section>
</template>
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