From 44b15934c77bcae799de0ada49e49e971e97cbbd Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Fri, 29 Apr 2022 15:08:33 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- .../components/list_page/registry_header.vue | 10 +--------- .../container_registry/explorer/constants/list.js | 3 --- .../dependency_proxy/app.vue | 16 ++------------- .../components/list/package_title.vue | 8 +------- .../group/components/dependency_proxy_settings.vue | 15 -------------- .../settings/group/constants.js | 3 --- doc/administration/troubleshooting/log_parsing.md | 12 +++++------ doc/api/job_artifacts.md | 3 +++ doc/user/application_security/sast/index.md | 17 ++++++++++------ .../vulnerability_report/index.md | 8 +++++++- doc/user/usage_quotas.md | 13 ++++++++++++ locale/gitlab.pot | 9 --------- .../components/list_page/registry_header_spec.js | 5 +---- .../components/list/packages_title_spec.js | 2 +- .../components/dependency_proxy_settings_spec.js | 23 +--------------------- 15 files changed, 47 insertions(+), 100 deletions(-) diff --git a/app/assets/javascripts/packages_and_registries/container_registry/explorer/components/list_page/registry_header.vue b/app/assets/javascripts/packages_and_registries/container_registry/explorer/components/list_page/registry_header.vue index 154e176dc6e..4ffd8390e4d 100644 --- a/app/assets/javascripts/packages_and_registries/container_registry/explorer/components/list_page/registry_header.vue +++ b/app/assets/javascripts/packages_and_registries/container_registry/explorer/components/list_page/registry_header.vue @@ -7,7 +7,6 @@ import TitleArea from '~/vue_shared/components/registry/title_area.vue'; import { CONTAINER_REGISTRY_TITLE, - LIST_INTRO_TEXT, EXPIRATION_POLICY_WILL_RUN_IN, EXPIRATION_POLICY_DISABLED_TEXT, SET_UP_CLEANUP, @@ -87,19 +86,12 @@ export default { ? sprintf(EXPIRATION_POLICY_WILL_RUN_IN, { time: this.timeTillRun }) : EXPIRATION_POLICY_DISABLED_TEXT; }, - infoMessages() { - return [{ text: LIST_INTRO_TEXT, link: this.helpPagePath }]; - }, }, };