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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
6d14255c
Commit
6d14255c
authored
Nov 29, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduces CE to EE differences
parent
77c26777
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
app/assets/javascripts/pipelines/components/graph/graph_component.vue
...avascripts/pipelines/components/graph/graph_component.vue
+0
-5
No files found.
app/assets/javascripts/pipelines/components/graph/graph_component.vue
View file @
6d14255c
...
@@ -18,23 +18,19 @@ export default {
...
@@ -18,23 +18,19 @@ export default {
required
:
true
,
required
:
true
,
},
},
},
},
computed
:
{
computed
:
{
graph
()
{
graph
()
{
return
this
.
pipeline
.
details
&&
this
.
pipeline
.
details
.
stages
;
return
this
.
pipeline
.
details
&&
this
.
pipeline
.
details
.
stages
;
},
},
},
},
methods
:
{
methods
:
{
capitalizeStageName
(
name
)
{
capitalizeStageName
(
name
)
{
const
escapedName
=
_
.
escape
(
name
);
const
escapedName
=
_
.
escape
(
name
);
return
escapedName
.
charAt
(
0
).
toUpperCase
()
+
escapedName
.
slice
(
1
);
return
escapedName
.
charAt
(
0
).
toUpperCase
()
+
escapedName
.
slice
(
1
);
},
},
isFirstColumn
(
index
)
{
isFirstColumn
(
index
)
{
return
index
===
0
;
return
index
===
0
;
},
},
stageConnectorClass
(
index
,
stage
)
{
stageConnectorClass
(
index
,
stage
)
{
let
className
;
let
className
;
...
@@ -48,7 +44,6 @@ export default {
...
@@ -48,7 +44,6 @@ export default {
return
className
;
return
className
;
},
},
refreshPipelineGraph
()
{
refreshPipelineGraph
()
{
this
.
$emit
(
'
refreshPipelineGraph
'
);
this
.
$emit
(
'
refreshPipelineGraph
'
);
},
},
...
...
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