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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-07 03:19:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-07 03:19:17 +0300
commit75b46eb33cd5dd542c69919a8bd5338933b79ecb (patch)
treea0704c082e4c474a8d65553c73b0bbd6808e41ba /app/assets/javascripts
parentea3f6d2444fd63f0ccaa0707d0ccbc59ec9af040 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r--app/assets/javascripts/batch_comments/components/submit_dropdown.vue23
1 files changed, 1 insertions, 22 deletions
diff --git a/app/assets/javascripts/batch_comments/components/submit_dropdown.vue b/app/assets/javascripts/batch_comments/components/submit_dropdown.vue
index beda251aa1e..107796a31e0 100644
--- a/app/assets/javascripts/batch_comments/components/submit_dropdown.vue
+++ b/app/assets/javascripts/batch_comments/components/submit_dropdown.vue
@@ -1,19 +1,10 @@
<script>
-import {
- GlDropdown,
- GlButton,
- GlIcon,
- GlForm,
- GlFormGroup,
- GlLink,
- GlFormCheckbox,
-} from '@gitlab/ui';
+import { GlDropdown, GlButton, GlIcon, GlForm, GlFormGroup, GlFormCheckbox } from '@gitlab/ui';
import { mapGetters, mapActions } from 'vuex';
import { createAlert } from '~/alert';
import MarkdownField from '~/vue_shared/components/markdown/field.vue';
import { scrollToElement } from '~/lib/utils/common_utils';
import Autosave from '~/autosave';
-import { helpPagePath } from '~/helpers/help_page_helper';
export default {
components: {
@@ -22,7 +13,6 @@ export default {
GlIcon,
GlForm,
GlFormGroup,
- GlLink,
GlFormCheckbox,
MarkdownField,
ApprovalPassword: () => import('ee_component/batch_comments/components/approval_password.vue'),
@@ -102,9 +92,6 @@ export default {
},
},
restrictedToolbarItems: ['full-screen'],
- helpPagePath: helpPagePath('user/project/merge_requests/reviews/index.html', {
- anchor: 'submit-a-review',
- }),
};
</script>
@@ -126,14 +113,6 @@ export default {
<gl-form-group label-for="review-note-body" label-class="gl-mb-2">
<template #label>
{{ __('Summary comment (optional)') }}
- <gl-link
- :href="$options.helpPagePath"
- :aria-label="__('More information')"
- target="_blank"
- class="gl-ml-2"
- >
- <gl-icon name="question-o" />
- </gl-link>
</template>
<div class="common-note-form gfm-form">
<div