mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-11 00:31:56 -06:00
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:
parent
ea34e17a46
commit
56a2642af0
@ -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);
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user