From 2b322a46a600f2b0948b8a1b41ee394ffcf8df5e Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 16 Sep 2011 18:21:41 -0500 Subject: Replaced description text fields with text areas. Ticket #1783 --- install/ui/automount.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'install/ui/automount.js') diff --git a/install/ui/automount.js b/install/ui/automount.js index a4fe166e..89b0f6b7 100644 --- a/install/ui/automount.js +++ b/install/ui/automount.js @@ -81,7 +81,13 @@ IPA.entity_factories.automountmap = function() { { name: 'identity', label: IPA.messages.details.identity, - fields: [ 'automountmapname', 'description' ] + fields: [ + 'automountmapname', + { + factory: IPA.textarea_widget, + name: 'description' + } + ] } ] }). @@ -107,7 +113,10 @@ IPA.entity_factories.automountmap = function() { ] }, 'automountmapname', - 'description' + { + factory: IPA.textarea_widget, + name: 'description' + } ] }, { -- cgit