Skip to content
Snippets Groups Projects

Adds `.json` to the end of pipelines endpoint

Merged Filipa Lacerda requested to merge 52472-pipeline-endpoint-json into master
All threads resolved!
Files
3
@@ -139,7 +139,7 @@ export const fetchStages = ({ state, dispatch }) => {
dispatch('requestStages');
axios
.get(state.job.pipeline.path)
.get(`${state.job.pipeline.path}.json`)
.then(({ data }) => {
dispatch('receiveStagesSuccess', data.details.stages);
dispatch('fetchJobsForStage', data.details.stages[0]);
Loading