Skip to content

Commit

Permalink
Merge pull request #1783 from guerler/fix_sections_000
Browse files Browse the repository at this point in the history
Fix tool form rendering of sections
  • Loading branch information
hexylena committed Feb 23, 2016
2 parents 390d3b7 + dda851d commit a41f475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/__init__.py
Expand Up @@ -1800,7 +1800,7 @@ def populate_model( inputs, state_inputs, group_inputs, other_values=None ):
populate_model( input.cases[ i ].inputs, current_state, tool_dict[ 'cases' ][ i ][ 'inputs' ], other_values )
elif input.type == 'section':
tool_dict = input.to_dict( request_context )
populate_model( tool_dict[ 'inputs' ], input.inputs, group_state, other_values )
populate_model( input.inputs, group_state, tool_dict[ 'inputs' ], other_values )
else:
try:
tool_dict = input.to_dict( request_context, other_values=other_values )
Expand Down

0 comments on commit a41f475

Please sign in to comment.