commit/galaxy-central: greg: Fix for displaying tools.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/661aca672402/ changeset: 661aca672402 user: greg date: 2011-07-12 21:02:37 summary: Fix for displaying tools. affected #: 1 file (14 bytes) --- a/templates/webapps/community/repository/tool_form.mako Tue Jul 12 13:51:28 2011 -0400 +++ b/templates/webapps/community/repository/tool_form.mako Tue Jul 12 15:02:37 2011 -0400 @@ -84,7 +84,7 @@ field = SelectField( param.name ) field.add_option( param.name, param.name ) field_html = field.get_html() - elif isinstance( param, SelectToolParameter ) and param.data_ref: + elif isinstance( param, SelectToolParameter ) and hasattr( param, 'data_ref' ): field = SelectField( param.name, display=param.display ) field.add_option( param.data_ref, param.data_ref ) field_html = field.get_html( prefix ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket