Commit 3d4ca734 authored by Jacques Erasmus's avatar Jacques Erasmus

Merge branch 'jnnkl-table-lite-subscription-details' into 'master'

Replace GlTable with GlTablelite for subscription-details

See merge request gitlab-org/gitlab!74333
parents 74e7d843 12a9a1f6
<script>
import { GlSkeletonLoader, GlTable } from '@gitlab/ui';
import { GlSkeletonLoader, GlTableLite } from '@gitlab/ui';
import { slugifyWithUnderscore } from '~/lib/utils/text_utility';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import { copySubscriptionIdButtonText, detailsLabels } from '../constants';
......@@ -33,7 +33,7 @@ export default {
components: {
ClipboardButton,
GlSkeletonLoader,
GlTable,
GlTableLite,
},
props: {
details: {
......@@ -88,7 +88,7 @@ export default {
</script>
<template>
<gl-table
<gl-table-lite
v-if="hasContent"
:fields="$options.fields"
:items="details"
......@@ -117,7 +117,7 @@ export default {
/>
</p>
</template>
</gl-table>
</gl-table-lite>
<div
v-else
:style="{ height: `${placeholderContainerHeight}px`, width: `${placeholderContainerWidth}px` }"
......
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