Commit 5b5246fa authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'rj/fix-foss' into 'master'

RUN AS-IF-FOSS Async import health_status_bundle

Closes #227004

See merge request gitlab-org/gitlab!36047
parents 74fcaffe 4e268cb0
...@@ -7,8 +7,6 @@ import MilestoneSelect from './milestone_select'; ...@@ -7,8 +7,6 @@ import MilestoneSelect from './milestone_select';
import issueStatusSelect from './issue_status_select'; import issueStatusSelect from './issue_status_select';
import subscriptionSelect from './subscription_select'; import subscriptionSelect from './subscription_select';
import LabelsSelect from './labels_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'; import issueableEventHub from './issuables_list/eventhub';
const HIDDEN_CLASS = 'hidden'; const HIDDEN_CLASS = 'hidden';
...@@ -66,8 +64,12 @@ export default class IssuableBulkUpdateSidebar { ...@@ -66,8 +64,12 @@ export default class IssuableBulkUpdateSidebar {
issueStatusSelect(); issueStatusSelect();
subscriptionSelect(); subscriptionSelect();
if (HealthStatusSelect) { if (IS_EE) {
HealthStatusSelect(); import('ee/vue_shared/components/sidebar/health_status_select/health_status_bundle')
.then(({ default: HealthStatusSelect }) => {
HealthStatusSelect();
})
.catch(() => {});
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment