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>2024-01-15 21:07:01 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-15 21:07:01 +0300
commit854a0164ea775b84f5ef2508926780144bbc981a (patch)
tree648f210654b6a4f723061ae44e4265b6b15964e7 /app/assets/javascripts/graphql_shared/utils.js
parenta29eae68f453c371271641899e00ea24339fb1c6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/graphql_shared/utils.js')
-rw-r--r--app/assets/javascripts/graphql_shared/utils.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/graphql_shared/utils.js b/app/assets/javascripts/graphql_shared/utils.js
index 6a64e8a2fa8..828a18a240e 100644
--- a/app/assets/javascripts/graphql_shared/utils.js
+++ b/app/assets/javascripts/graphql_shared/utils.js
@@ -50,10 +50,10 @@ export const getTypeFromGraphQLId = (gid = '') => {
return type || null;
};
-export const MutationOperationMode = {
- Append: 'APPEND',
- Remove: 'REMOVE',
- Replace: 'REPLACE',
+export const mutationOperationMode = {
+ append: 'APPEND',
+ remove: 'REMOVE',
+ replace: 'REPLACE',
};
/**