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:
Diffstat (limited to 'app/assets/javascripts/batch_comments/components/publish_button.vue')
-rw-r--r--app/assets/javascripts/batch_comments/components/publish_button.vue52
1 files changed, 0 insertions, 52 deletions
diff --git a/app/assets/javascripts/batch_comments/components/publish_button.vue b/app/assets/javascripts/batch_comments/components/publish_button.vue
deleted file mode 100644
index d4fc4ad744a..00000000000
--- a/app/assets/javascripts/batch_comments/components/publish_button.vue
+++ /dev/null
@@ -1,52 +0,0 @@
-<script>
-import { GlButton } from '@gitlab/ui';
-import { mapActions, mapState } from 'vuex';
-import DraftsCount from './drafts_count.vue';
-
-export default {
- components: {
- GlButton,
- DraftsCount,
- },
- props: {
- showCount: {
- type: Boolean,
- required: false,
- default: false,
- },
- category: {
- type: String,
- required: false,
- default: 'primary',
- },
- variant: {
- type: String,
- required: false,
- default: 'confirm',
- },
- },
- computed: {
- ...mapState('batchComments', ['isPublishing']),
- },
- methods: {
- ...mapActions('batchComments', ['publishReview']),
- onClick() {
- this.publishReview();
- },
- },
-};
-</script>
-
-<template>
- <gl-button
- :loading="isPublishing"
- class="js-publish-draft-button"
- data-qa-selector="submit_review_button"
- :category="category"
- :variant="variant"
- @click="onClick"
- >
- {{ __('Submit review') }}
- <drafts-count v-if="showCount" />
- </gl-button>
-</template>