summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/explorer/components/list_page/group_empty_state.vue
diff options
context:
space:
mode:
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>