Commit 341eb3d0 authored by Filipa Lacerda's avatar Filipa Lacerda

Removes EE differences for pipelines_details_bundle

parent fafae771
import Flash from '~/flash';
import { __ } from '~/locale';
export default { export default {
methods: { methods: {
clickTriggeredByPipeline() {}, clickTriggeredByPipeline() {},
clickTriggeredPipeline() {}, clickTriggeredPipeline() {},
requestRefreshPipelineGraph() {
// When an action is clicked
// (wether in the dropdown or in the main nodes, we refresh the big graph)
this.mediator
.refreshPipeline()
.catch(() => Flash(__('An error occurred while making the request.')));
},
}, },
}; };
...@@ -34,7 +34,6 @@ export default () => { ...@@ -34,7 +34,6 @@ export default () => {
props: { props: {
isLoading: this.mediator.state.isLoading, isLoading: this.mediator.state.isLoading,
pipeline: this.mediator.store.state.pipeline, pipeline: this.mediator.store.state.pipeline,
mediator: this.mediator,
}, },
on: { on: {
refreshPipelineGraph: this.requestRefreshPipelineGraph, refreshPipelineGraph: this.requestRefreshPipelineGraph,
......
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