summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/explorer/components/list_page/group_empty_state.vue
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 13:16:36 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 13:16:36 +0000
commit311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch)
tree07e7870bca8aed6d61fdcc810731c50d2c40af47 /app/assets/javascripts/registry/explorer/components/list_page/group_empty_state.vue
parent27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff)
downloadgitlab-ce-311b0269b4eb9839fa63f80c8d7a58f32b8138a0.tar.gz
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to 'app/assets/javascripts/registry/explorer/components/list_page/group_empty_state.vue')
-rw-r--r--app/assets/javascripts/registry/explorer/components/list_page/group_empty_state.vue35
1 files changed, 0 insertions, 35 deletions
diff --git a/app/assets/javascripts/registry/explorer/components/list_page/group_empty_state.vue b/app/assets/javascripts/registry/explorer/components/list_page/group_empty_state.vue
deleted file mode 100644
index a68c4de5aa6..00000000000
--- a/app/assets/javascripts/registry/explorer/components/list_page/group_empty_state.vue
+++ /dev/null
@@ -1,35 +0,0 @@
-<script>
-import { GlEmptyState, GlSprintf, GlLink } from '@gitlab/ui';
-
-export default {
- name: 'GroupEmptyState',
- components: {
- GlEmptyState,
- GlSprintf,
- GlLink,
- },
- inject: ['config'],
-};
-</script>
-<template>
- <gl-empty-state
- :title="s__('ContainerRegistry|There are no container images available in this group')"
- :svg-path="config.noContainersImage"
- >
- <template #description>
- <p>
- <gl-sprintf
- :message="
- s__(
- `ContainerRegistry|With the Container Registry, every project can have its own space to store its Docker images. Push at least one Docker image in one of this group's projects in order to show up here. %{docLinkStart}More Information%{docLinkEnd}`,
- )
- "
- >
- <template #docLink="{ content }">
- <gl-link :href="config.helpPagePath" target="_blank">{{ content }}</gl-link>
- </template>
- </gl-sprintf>
- </p>
- </template>
- </gl-empty-state>
-</template>