summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/explorer/pages
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-08 15:08:21 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-08 15:08:21 +0000
commit1bdb3fe3821fc3d222361d8b2e2ec2fea2915372 (patch)
treec2566a9cb9d3328bff5d816278112c97be4179fe /app/assets/javascripts/registry/explorer/pages
parent996d54a81d799e6a69098b1e397a4ee7ea6d200c (diff)
downloadgitlab-ce-1bdb3fe3821fc3d222361d8b2e2ec2fea2915372.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/registry/explorer/pages')
-rw-r--r--app/assets/javascripts/registry/explorer/pages/list.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/javascripts/registry/explorer/pages/list.vue b/app/assets/javascripts/registry/explorer/pages/list.vue
index 4e9f0a83501..c6ba06cd68c 100644
--- a/app/assets/javascripts/registry/explorer/pages/list.vue
+++ b/app/assets/javascripts/registry/explorer/pages/list.vue
@@ -15,6 +15,7 @@ import Tracking from '~/tracking';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import ProjectEmptyState from '../components/project_empty_state.vue';
import GroupEmptyState from '../components/group_empty_state.vue';
+import ProjectPolicyAlert from '../components/project_policy_alert.vue';
export default {
name: 'RegistryListApp',
@@ -23,6 +24,7 @@ export default {
GlPagination,
ProjectEmptyState,
GroupEmptyState,
+ ProjectPolicyAlert,
ClipboardButton,
GlButton,
GlIcon,
@@ -84,6 +86,8 @@ export default {
<template>
<div class="w-100 slide-enter-from-element">
+ <project-policy-alert v-if="!config.isGroupPage" />
+
<gl-empty-state
v-if="config.characterError"
:title="s__('ContainerRegistry|Docker connection error')"