diff options
Diffstat (limited to 'install/ui/src/freeipa/widget.js')
-rw-r--r-- | install/ui/src/freeipa/widget.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/widget.js b/install/ui/src/freeipa/widget.js index c39f3326..28a068bf 100644 --- a/install/ui/src/freeipa/widget.js +++ b/install/ui/src/freeipa/widget.js @@ -54,7 +54,7 @@ var exp = {}; * @member IPA * @property {number} */ -IPA.checkbox_column_width = 22; +IPA.checkbox_column_width = 13; /** * String to show next to required fields to indicate that the field is required. @@ -1169,7 +1169,7 @@ IPA.option_widget_base = function(spec, that) { }).appendTo(container); option.label_node = $('<label/>', { - html: option.label || ' ', + html: option.label || '', title: option.tooltip || that.tooltip, 'for': id }).appendTo(container); @@ -1556,7 +1556,7 @@ IPA.standalone_option = function(spec, container, label) { if (!label) { input.addClass('standalone'); - label = ' '; + label = ''; } var label_el = $('<label/>', { |