Skip to content
Snippets Groups Projects
Commit 00ac520e authored by Kushal Pandya's avatar Kushal Pandya
Browse files

Merge branch '55242-skeleton-loading-releases' into 'master'

Adds skeleton loading for releases

Closes #55242

See merge request gitlab-org/gitlab-ce!24264
parents 81aacf9c 4f79bd78
No related branches found
No related tags found
No related merge requests found
<script>
import { mapState, mapActions } from 'vuex';
import { GlLoadingIcon, GlEmptyState } from '@gitlab/ui';
import { GlSkeletonLoading, GlEmptyState } from '@gitlab/ui';
import ReleaseBlock from './release_block.vue';
export default {
name: 'ReleasesApp',
components: {
GlLoadingIcon,
GlSkeletonLoading,
GlEmptyState,
ReleaseBlock,
},
......@@ -43,7 +43,7 @@ export default {
</script>
<template>
<div class="prepend-top-default">
<gl-loading-icon v-if="isLoading" :size="2" class="js-loading prepend-top-20" />
<gl-skeleton-loading v-if="isLoading" class="js-loading" />
<gl-empty-state
v-else-if="shouldRenderEmptyState"
......
---
title: Adds skeleton loading to releases page
merge_request:
author:
type: changed
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