Commit f1b99d7d authored by Filipa Lacerda's avatar Filipa Lacerda

Removes EE differences for pipelines_details_bundle

parent 0610bb09
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.')));
},
}, },
}; };
...@@ -29,15 +29,6 @@ export default () => { ...@@ -29,15 +29,6 @@ export default () => {
mediator, mediator,
}; };
}, },
methods: {
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.')));
},
},
render(createElement) { render(createElement) {
return createElement('pipeline-graph', { return createElement('pipeline-graph', {
props: { props: {
......
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