summaryrefslogtreecommitdiffstats
path: root/install/ui/entity.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-08-10 20:03:02 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-09-09 19:47:51 +0000
commit844ff2075f8c1ce3131a161db9d3fb498b4940e0 (patch)
tree4b7acd0154588c93e483d0c361f1848b8f8c4503 /install/ui/entity.js
parent290bc6a7682b9744e927b772f8f36f67eb6ff5e5 (diff)
downloadfreeipa-844ff2075f8c1ce3131a161db9d3fb498b4940e0.tar.gz
freeipa-844ff2075f8c1ce3131a161db9d3fb498b4940e0.tar.xz
freeipa-844ff2075f8c1ce3131a161db9d3fb498b4940e0.zip
Fixed layout problem in permission adder dialog.
In order to maintain consistent layout between details page and dialog boxes the IPA.details_list_section has been replaced with IPA.details_table_section which is based on table. The IPA.target_section and other subclasses of IPA.details_list_section have been converted to use IPA.details_table_section as well. The unit tests have been updated accordingly. Ticket #1648
Diffstat (limited to 'install/ui/entity.js')
-rw-r--r--install/ui/entity.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/entity.js b/install/ui/entity.js
index 8b05d475a..15e45aad9 100644
--- a/install/ui/entity.js
+++ b/install/ui/entity.js
@@ -882,7 +882,7 @@ IPA.entity_builder = function(){
if (spec.factory) {
section = spec.factory(spec);
} else {
- section = IPA.details_list_section(spec);
+ section = IPA.details_table_section(spec);
}
facet.add_section(section);
var fields = spec.fields;