Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
4e268cb0
Commit
4e268cb0
authored
Jul 06, 2020
by
Rajat Jain
Committed by
Kushal Pandya
Jul 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RUN AS-IF-FOSS Async import health_status_bundle
parent
d868d313
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
app/assets/javascripts/issuable_bulk_update_sidebar.js
app/assets/javascripts/issuable_bulk_update_sidebar.js
+6
-4
No files found.
app/assets/javascripts/issuable_bulk_update_sidebar.js
View file @
4e268cb0
...
...
@@ -7,8 +7,6 @@ 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
'
;
...
...
@@ -66,8 +64,12 @@ export default class IssuableBulkUpdateSidebar {
issueStatusSelect
();
subscriptionSelect
();
if
(
HealthStatusSelect
)
{
HealthStatusSelect
();
if
(
IS_EE
)
{
import
(
'
ee/vue_shared/components/sidebar/health_status_select/health_status_bundle
'
)
.
then
(({
default
:
HealthStatusSelect
})
=>
{
HealthStatusSelect
();
})
.
catch
(()
=>
{});
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment