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:
Diffstat (limited to 'app/assets/javascripts/observability/components/skeleton/explore.vue')
-rw-r--r--app/assets/javascripts/observability/components/skeleton/explore.vue28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/assets/javascripts/observability/components/skeleton/explore.vue b/app/assets/javascripts/observability/components/skeleton/explore.vue
deleted file mode 100644
index 3f748086eef..00000000000
--- a/app/assets/javascripts/observability/components/skeleton/explore.vue
+++ /dev/null
@@ -1,28 +0,0 @@
-<!-- eslint-disable vue/multi-word-component-names -->
-<script>
-import { GlSkeletonLoader } from '@gitlab/ui';
-
-export default {
- components: {
- GlSkeletonLoader,
- },
-};
-</script>
-<template>
- <gl-skeleton-loader :height="200">
- <!-- Top left -->
- <circle y="2" cx="6" cy="6" r="4" />
- <rect y="2" x="15" width="15" height="8" />
- <rect y="2" x="35" width="40" height="8" />
-
- <!-- Top right -->
-
- <rect y="2" x="263" width="13" height="8" />
- <rect y="2" x="278" width="8" height="8" />
- <rect y="2" x="288" width="50" height="8" />
- <rect y="2" x="340" width="18" height="8" />
- <rect y="2" x="360" width="30" height="8" />
-
- <rect y="15" width="400" height="30" rx="2" ry="2" />
- </gl-skeleton-loader>
-</template>