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:
Diffstat (limited to 'app/assets/javascripts/feature_flags/components/strategies/flexible_rollout.vue')
-rw-r--r--app/assets/javascripts/feature_flags/components/strategies/flexible_rollout.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/feature_flags/components/strategies/flexible_rollout.vue b/app/assets/javascripts/feature_flags/components/strategies/flexible_rollout.vue
index 4daf8b4e6bf..858c30649bb 100644
--- a/app/assets/javascripts/feature_flags/components/strategies/flexible_rollout.vue
+++ b/app/assets/javascripts/feature_flags/components/strategies/flexible_rollout.vue
@@ -25,19 +25,19 @@ export default {
},
stickinessOptions: [
{
- value: 'DEFAULT',
+ value: 'default',
text: __('Available ID'),
},
{
- value: 'USERID',
+ value: 'userId',
text: __('User ID'),
},
{
- value: 'SESSIONID',
+ value: 'sessionId',
text: __('Session ID'),
},
{
- value: 'RANDOM',
+ value: 'random',
text: __('Random'),
},
],