diff options
author | Adam Young <ayoung@redhat.com> | 2010-12-21 15:14:08 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2010-12-22 12:48:26 -0500 |
commit | 82b03ddfc16164a13bf1ffc531255496e8b72e25 (patch) | |
tree | 4519b78b6e5eb8f47a4320f7416d3f2b04553da6 /install/static/widget.js | |
parent | 5747568e5dfd5898c35beb89024df7a7068730e8 (diff) | |
download | freeipa.git-82b03ddfc16164a13bf1ffc531255496e8b72e25.tar.gz freeipa.git-82b03ddfc16164a13bf1ffc531255496e8b72e25.tar.xz freeipa.git-82b03ddfc16164a13bf1ffc531255496e8b72e25.zip |
hidden filter
The filter field on aci add is hidden, and prefilled with an object class that doesn't exist.
Fixed the error where the other fields were removed
Diffstat (limited to 'install/static/widget.js')
-rwxr-xr-x | install/static/widget.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/install/static/widget.js b/install/static/widget.js index 07973c7f..4da5df03 100755 --- a/install/static/widget.js +++ b/install/static/widget.js @@ -55,7 +55,9 @@ function ipa_widget(spec) { function init() { if (that.entity_name && !that.label){ var param_info = ipa_get_param_info(that.entity_name, spec.name); - if (param_info) that.label = param_info.label; + if ((param_info) && (that.label === undefined)){ + that.label = param_info.label; + } } } |