Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-06-06 18:09:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-06 18:09:05 +0300
commitc79da5142f46e6e9187f75c329e2c81a8568c581 (patch)
treee1411c6a9b22582f91bfbca947c343d0b36cf11a /app/assets/javascripts/repository
parent2e31a394c5857fdb845811685ca7fc79a2fb7540 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/repository')
-rw-r--r--app/assets/javascripts/repository/components/table/index.vue14
1 files changed, 9 insertions, 5 deletions
diff --git a/app/assets/javascripts/repository/components/table/index.vue b/app/assets/javascripts/repository/components/table/index.vue
index c2323d6b286..41f7a4b147f 100644
--- a/app/assets/javascripts/repository/components/table/index.vue
+++ b/app/assets/javascripts/repository/components/table/index.vue
@@ -1,5 +1,5 @@
<script>
-import { GlDeprecatedSkeletonLoading as GlSkeletonLoading, GlButton } from '@gitlab/ui';
+import { GlSkeletonLoader, GlButton } from '@gitlab/ui';
import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import { sprintf, __ } from '~/locale';
import getRefMixin from '../../mixins/get_ref';
@@ -10,7 +10,7 @@ import TableRow from './row.vue';
export default {
components: {
- GlSkeletonLoading,
+ GlSkeletonLoader,
TableHeader,
TableRow,
ParentRow,
@@ -158,11 +158,15 @@ export default {
</template>
<template v-if="isLoading">
<tr v-for="i in 5" :key="i" aria-hidden="true">
- <td><gl-skeleton-loading :lines="1" class="h-auto" /></td>
+ <td><gl-skeleton-loader :lines="1" /></td>
<td class="gl-display-none gl-sm-display-block">
- <gl-skeleton-loading :lines="1" class="h-auto" />
+ <gl-skeleton-loader :lines="1" />
+ </td>
+ <td>
+ <div class="gl-display-flex gl-lg-justify-content-end">
+ <gl-skeleton-loader :equal-width-lines="true" :lines="1" />
+ </div>
</td>
- <td><gl-skeleton-loading :lines="1" class="ml-auto h-auto w-50" /></td>
</tr>
</template>
<template v-if="hasMore">