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-08-17 06:09:39 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-08-17 06:09:39 +0300
commit9faa254d078cfb332e7bab191e6eb362cb67259c (patch)
treef940a6486b889b04d16d70b18d6a4fb6543e4ff3 /app/assets/javascripts/integrations
parentb477368cfec3988a86cde7ac389596041a959af5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/integrations')
-rw-r--r--app/assets/javascripts/integrations/edit/components/sections/google_play.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/integrations/edit/components/sections/google_play.vue b/app/assets/javascripts/integrations/edit/components/sections/google_play.vue
index 6a058897e5b..20f0d3bba97 100644
--- a/app/assets/javascripts/integrations/edit/components/sections/google_play.vue
+++ b/app/assets/javascripts/integrations/edit/components/sections/google_play.vue
@@ -13,7 +13,7 @@ export default {
},
data() {
return {
- dropzoneAllowList: ['.json'],
+ dropzoneAllowList: ['.JSON'],
};
},
i18n: {
@@ -24,7 +24,7 @@ export default {
"GooglePlay|Error: The file you're trying to upload is not a service account key.",
),
dropzoneConfirmMessage: s__('GooglePlay|Drag your key file to start the upload.'),
- dropzoneEmptyInputName: s__('GooglePlay|Service account key (.json)'),
+ dropzoneEmptyInputName: s__('GooglePlay|Service account key (.JSON)'),
dropzoneNonEmptyInputName: s__(
'GooglePlay|Upload a new service account key (replace %{currentFileName})',
),