Merge branch '10711-pipeline-bundle' into 'master'

Removes EE differences for pipelines_details_bundle

Closes gitlab-ee#10711

See merge request gitlab-org/gitlab-ce!26654
This commit is contained in:
Phil Hughes 2019-03-27 14:39:46 +00:00
commit 771dfe062f
2 changed files with 10 additions and 9 deletions

View file

@ -1,6 +1,16 @@
import Flash from '~/flash';
import { __ } from '~/locale';
export default {
methods: {
clickTriggeredByPipeline() {},
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.')));
},
},
};

View file

@ -29,15 +29,6 @@ export default () => {
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) {
return createElement('pipeline-graph', {
props: {