From ad3451067ad474ea52872913d6789b1652f9a9c4 Mon Sep 17 00:00:00 2001 From: Pavel Vomacka Date: Tue, 13 Dec 2016 13:25:48 +0100 Subject: WebUI: don't change casing of Auth Indicators values All values were previously converted to lowercase which was not coresponding with CLI behaviour. Now they stay as they are inserted. I also have to change the strings to lowercase because the otp and radius should be inserted as lowercase words. https://fedorahosted.org/freeipa/ticket/6308 Reviewed-By: Petr Vobornik --- install/ui/src/freeipa/host.js | 4 ++-- install/ui/src/freeipa/service.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'install/ui') diff --git a/install/ui/src/freeipa/host.js b/install/ui/src/freeipa/host.js index a09535cd1..ac434d845 100644 --- a/install/ui/src/freeipa/host.js +++ b/install/ui/src/freeipa/host.js @@ -124,11 +124,11 @@ return { add_field_label: '@i18n:authtype.auth_indicator', options: [ { - label: '@i18n:authtype.otp', + label: 'otp', value: 'otp' }, { - label: '@i18n:authtype.type_radius', + label: 'radius', value: 'radius' } ], diff --git a/install/ui/src/freeipa/service.js b/install/ui/src/freeipa/service.js index 10f86cec2..279f842a0 100644 --- a/install/ui/src/freeipa/service.js +++ b/install/ui/src/freeipa/service.js @@ -134,11 +134,11 @@ return { add_field_label: '@i18n:authtype.auth_indicator', options: [ { - label: '@i18n:authtype.otp', + label: 'otp', value: 'otp' }, { - label: '@i18n:authtype.type_radius', + label: 'radius', value: 'radius' } ], -- cgit