diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-02-09 10:56:25 -0600 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-02-11 16:27:59 -0500 |
commit | 6880daefee19f164ff3c03f6f761558f0ecc0a7f (patch) | |
tree | f05f80e15af3f90dfcd7b41350eb87f21947f818 /install/ui/dialog.js | |
parent | 29cf66046ae0786cee9e97178609b11ae82649a0 (diff) | |
download | freeipa-6880daefee19f164ff3c03f6f761558f0ecc0a7f.tar.gz freeipa-6880daefee19f164ff3c03f6f761558f0ecc0a7f.tar.xz freeipa-6880daefee19f164ff3c03f6f761558f0ecc0a7f.zip |
Fixed add service dialog box.
Previously the add service dialog box shows a 'Principal:' label with
no text field next to it. It now has been removed. The dialog box
has been widened to avoid line wrapping of the buttons.
Diffstat (limited to 'install/ui/dialog.js')
-rw-r--r-- | install/ui/dialog.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/ui/dialog.js b/install/ui/dialog.js index f8eaf2121..4733b7814 100644 --- a/install/ui/dialog.js +++ b/install/ui/dialog.js @@ -117,6 +117,7 @@ IPA.dialog = function(spec) { for (var i=0; i<that.fields.length; i++) { var field = that.fields[i]; + if (field.hidden) continue; var tr = $('<tr/>').appendTo(table); |