Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-07-08 03:08:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-08 03:08:05 +0300
commitca412911f38be22bd3ebe7f7ec4e553314a055c5 (patch)
treeaf44262c9bfb239e913cd18b6fbfed1ea3ec3b85 /app/assets/javascripts/merge_request_tabs.js
parent557e0c82504248a44bcbce32b93dc432929fe2ca (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/merge_request_tabs.js')
-rw-r--r--app/assets/javascripts/merge_request_tabs.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/assets/javascripts/merge_request_tabs.js b/app/assets/javascripts/merge_request_tabs.js
index 8307d0a9eed..883b9e6919b 100644
--- a/app/assets/javascripts/merge_request_tabs.js
+++ b/app/assets/javascripts/merge_request_tabs.js
@@ -21,7 +21,12 @@ import syntaxHighlight from './syntax_highlight';
Vue.use(VueApollo);
const apolloProvider = new VueApollo({
- defaultClient: createDefaultClient(),
+ defaultClient: createDefaultClient(
+ {},
+ {
+ useGet: true,
+ },
+ ),
});
// MergeRequestTabs
@@ -96,6 +101,7 @@ function mountPipelines() {
artifactsEndpointPlaceholder: pipelineTableViewEl.dataset.artifactsEndpointPlaceholder,
targetProjectFullPath: mrWidgetData?.target_project_full_path || '',
fullPath: pipelineTableViewEl.dataset.fullPath,
+ graphqlPath: pipelineTableViewEl.dataset.graphqlPath,
manualActionsLimit: 50,
withFailedJobsDetails: true,
},