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
92198c69
Commit
92198c69
authored
Jun 06, 2017
by
Bryce Johnson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
triggered_by -> triggeredBy.
parent
27ff6489
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
app/assets/javascripts/pipelines/pipeline_details_bundle.js
app/assets/javascripts/pipelines/pipeline_details_bundle.js
+1
-1
app/assets/javascripts/pipelines/stores/pipeline_store.js
app/assets/javascripts/pipelines/stores/pipeline_store.js
+2
-2
No files found.
app/assets/javascripts/pipelines/pipeline_details_bundle.js
View file @
92198c69
...
...
@@ -24,7 +24,7 @@ document.addEventListener('DOMContentLoaded', () => {
props
:
{
isLoading
:
this
.
mediator
.
state
.
isLoading
,
pipeline
:
this
.
mediator
.
store
.
state
.
pipeline
,
triggeredBy
:
this
.
mediator
.
store
.
state
.
triggered
_b
y
,
triggeredBy
:
this
.
mediator
.
store
.
state
.
triggered
B
y
,
triggered
:
this
.
mediator
.
store
.
state
.
triggered
,
},
});
...
...
app/assets/javascripts/pipelines/stores/pipeline_store.js
View file @
92198c69
...
...
@@ -14,7 +14,7 @@ export default class PipelineStore {
this
.
state
.
pipeline
=
{};
this
.
state
.
triggered
=
[];
this
.
state
.
triggered
_b
y
=
[];
this
.
state
.
triggered
B
y
=
[];
}
storePipeline
(
pipeline
=
{})
{
...
...
@@ -24,7 +24,7 @@ export default class PipelineStore {
// multiple jobs in last stage
// pipeline.details.stages[3].groups.push(pipeline.details.stages[0].groups[0]);
this
.
state
.
pipeline
=
pipeline
;
this
.
state
.
triggered
_b
y
=
mockTriggerers
;
this
.
state
.
triggered
B
y
=
mockTriggerers
;
// single triggered
// this.state.triggered = [mockTriggereds[0]];
...
...
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