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
ab44249c
Commit
ab44249c
authored
Aug 18, 2020
by
sstern
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add el check for epic swimlanes
parent
98c48a09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
ee/app/assets/javascripts/boards/toggle_epics_swimlanes.js
ee/app/assets/javascripts/boards/toggle_epics_swimlanes.js
+10
-3
No files found.
ee/app/assets/javascripts/boards/toggle_epics_swimlanes.js
View file @
ab44249c
...
...
@@ -2,9 +2,15 @@ import Vue from 'vue';
import
ToggleEpicsSwimlanes
from
'
./components/toggle_epics_swimlanes.vue
'
;
import
store
from
'
~/boards/stores
'
;
export
default
()
=>
new
Vue
({
el
:
document
.
getElementById
(
'
js-board-epics-swimlanes-toggle
'
),
export
default
()
=>
{
const
el
=
document
.
getElementById
(
'
js-board-epics-swimlanes-toggle
'
);
if
(
!
el
)
{
return
null
;
}
return
new
Vue
({
el
,
components
:
{
ToggleEpicsSwimlanes
,
},
...
...
@@ -13,3 +19,4 @@ export default () =>
return
createElement
(
ToggleEpicsSwimlanes
);
},
});
}
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