Commit 928e5eb1 authored by Jannik Lehmann's avatar Jannik Lehmann

Enable `assumeImmutableResults` in pipeline analytics graphs

This commit solves https://gitlab.com/gitlab-org/gitlab/-/issues/338442
It enables `assumeImmutableResults` in the pipeline analytics graphs.
parent 0ce52132
...@@ -7,7 +7,7 @@ import ProjectPipelinesCharts from './components/app.vue'; ...@@ -7,7 +7,7 @@ import ProjectPipelinesCharts from './components/app.vue';
Vue.use(VueApollo); Vue.use(VueApollo);
const apolloProvider = new VueApollo({ const apolloProvider = new VueApollo({
defaultClient: createDefaultClient(), defaultClient: createDefaultClient({}, { assumeImmutableResults: true }),
}); });
const mountPipelineChartsApp = (el) => { const mountPipelineChartsApp = (el) => {
......
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