webui: fixes normalization of value in attributes widget

Fix is in checkboxes widget but the only affected one is attributes widget.

Reproduction:
 1. Add permission with attribute with uppercase character
   $ ipa permission-add aa_test --type=stageuser --attrs=businessCategory --right=read
 2. Check if it is correctly displayed in Web UI

Actual result:
 - businesscategory is not checked
Expected result:
 - businesscategory is checked

Reviewed-By: Pavel Vomacka <pvomacka@redhat.com>
This commit is contained in:
Petr Vobornik 2017-03-08 14:34:20 +01:00 committed by David Kupka
parent ea34e17a46
commit 56a2642af0

View File

@ -2626,7 +2626,7 @@ IPA.custom_checkboxes_widget = function(spec) {
that.populate();
that.append();
that.owb_create(that.container);
that.owb_update(values);
that.owb_update(that.values);
};
/**