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>2020-07-06 12:09:20 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-07-06 12:09:20 +0300
commitc203c40cda9df83cc33f9d69a24593ef4de1148d (patch)
treef13d457cff113e393e256132534296ec9e7ad2d7 /app/assets/javascripts/issuable_bulk_update_sidebar.js
parent2553d13d9064a16e98720b4d25add589b1e43e28 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/issuable_bulk_update_sidebar.js')
-rw-r--r--app/assets/javascripts/issuable_bulk_update_sidebar.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/javascripts/issuable_bulk_update_sidebar.js b/app/assets/javascripts/issuable_bulk_update_sidebar.js
index 50562688c53..3ff3646edd7 100644
--- a/app/assets/javascripts/issuable_bulk_update_sidebar.js
+++ b/app/assets/javascripts/issuable_bulk_update_sidebar.js
@@ -7,6 +7,8 @@ import MilestoneSelect from './milestone_select';
import issueStatusSelect from './issue_status_select';
import subscriptionSelect from './subscription_select';
import LabelsSelect from './labels_select';
+import HealthStatusSelect from 'ee_else_ce/vue_shared/components/sidebar/health_status_select/health_status_bundle';
+
import issueableEventHub from './issuables_list/eventhub';
const HIDDEN_CLASS = 'hidden';
@@ -63,6 +65,10 @@ export default class IssuableBulkUpdateSidebar {
new MilestoneSelect();
issueStatusSelect();
subscriptionSelect();
+
+ if (HealthStatusSelect) {
+ HealthStatusSelect();
+ }
}
setupBulkUpdateActions() {