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>2021-03-16 00:09:16 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 00:09:16 +0300
commite8c01bc6a16cc4aa934ac42cccb7b287527c93f0 (patch)
tree947fa135303b20480f8b3a173fa59a796c6d0d36 /app/assets/javascripts/batch_comments
parenta0213db466c75403a5a79f95af8a0a5cff13014c (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/batch_comments')
-rw-r--r--app/assets/javascripts/batch_comments/components/publish_button.vue3
-rw-r--r--app/assets/javascripts/batch_comments/components/review_bar.vue5
2 files changed, 6 insertions, 2 deletions
diff --git a/app/assets/javascripts/batch_comments/components/publish_button.vue b/app/assets/javascripts/batch_comments/components/publish_button.vue
index 8568dba5947..2a7be605003 100644
--- a/app/assets/javascripts/batch_comments/components/publish_button.vue
+++ b/app/assets/javascripts/batch_comments/components/publish_button.vue
@@ -40,7 +40,8 @@ export default {
<template>
<gl-button
:loading="isPublishing"
- class="js-publish-draft-button qa-submit-review"
+ class="js-publish-draft-button"
+ data-qa-selector="submit_review_button"
:category="category"
:variant="variant"
@click="onClick"
diff --git a/app/assets/javascripts/batch_comments/components/review_bar.vue b/app/assets/javascripts/batch_comments/components/review_bar.vue
index 035d6f4e0ab..9ffc5ee34cf 100644
--- a/app/assets/javascripts/batch_comments/components/review_bar.vue
+++ b/app/assets/javascripts/batch_comments/components/review_bar.vue
@@ -27,7 +27,10 @@ export default {
<template>
<div v-show="draftsCount > 0">
<nav class="review-bar-component">
- <div class="review-bar-content qa-review-bar d-flex gl-justify-content-end">
+ <div
+ class="review-bar-content d-flex gl-justify-content-end"
+ data-qa-selector="review_bar_content"
+ >
<preview-dropdown />
<publish-button class="gl-ml-3" show-count />
</div>