Commit 92198c69 authored by Bryce Johnson's avatar Bryce Johnson

triggered_by -> triggeredBy.

parent 27ff6489
......@@ -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_by,
triggeredBy: this.mediator.store.state.triggeredBy,
triggered: this.mediator.store.state.triggered,
},
});
......
......@@ -14,7 +14,7 @@ export default class PipelineStore {
this.state.pipeline = {};
this.state.triggered = [];
this.state.triggered_by = [];
this.state.triggeredBy = [];
}
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_by = mockTriggerers;
this.state.triggeredBy = mockTriggerers;
// single triggered
// this.state.triggered = [mockTriggereds[0]];
......
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