From e100ba7e2b14b74ed548ee0dd6ba1093b17dd795 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Tue, 16 Apr 2013 12:59:38 +0200 Subject: Replace build logic in widget and field builder by new builder https://fedorahosted.org/freeipa/ticket/3235 --- install/ui/src/freeipa/trust.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'install/ui/src/freeipa/trust.js') diff --git a/install/ui/src/freeipa/trust.js b/install/ui/src/freeipa/trust.js index e47b3b073..145ffc132 100644 --- a/install/ui/src/freeipa/trust.js +++ b/install/ui/src/freeipa/trust.js @@ -74,11 +74,11 @@ IPA.trust.entity = function(spec) { label: '@i18n:objects.trust.blacklists', fields: [ { - type: 'multivalued', + $type: 'multivalued', name: 'ipantsidblacklistincoming' }, { - type: 'multivalued', + $type: 'multivalued', name: 'ipantsidblacklistoutgoing' } // trust status not supported by show command at the moment @@ -104,19 +104,19 @@ IPA.trust.entity = function(spec) { widget: 'method.realm_admin' }, { - type: 'password', + $type: 'password', name: 'realm_passwd', label: '@i18n:password.password', widget: 'method.realm_passwd' }, { - type: 'password', + $type: 'password', name: 'trust_secret', label: '@i18n:password.password', widget: 'method.trust_secret' }, { - type: 'password', + $type: 'password', name: 'trust_secret_verify', label: '@i18n:password.verify_password', widget: 'method.trust_secret_verify', @@ -128,14 +128,14 @@ IPA.trust.entity = function(spec) { ], widgets: [ { - type: 'details_table_section_nc', + $type: 'details_table_section_nc', name: 'realm', widgets: [ 'realm_server' ] }, { - type: 'multiple_choice_section', + $type: 'multiple_choice_section', name: 'method', label: '@i18n:objects.trust.establish_using', choices: [ @@ -158,15 +158,15 @@ IPA.trust.entity = function(spec) { name: 'realm_admin' }, { - type: 'password', + $type: 'password', name: 'realm_passwd' }, { - type: 'password', + $type: 'password', name: 'trust_secret' }, { - type: 'password', + $type: 'password', name: 'trust_secret_verify' } ] -- cgit