From 82b03ddfc16164a13bf1ffc531255496e8b72e25 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Tue, 21 Dec 2010 15:14:08 -0500 Subject: 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 --- install/static/widget.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'install/static/widget.js') 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; + } } } -- cgit