1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a9cb31de456c/ changeset: a9cb31de456c user: dan date: 2013-03-12 20:37:05 summary: Do not display empty Sections in the workflow editor tool list. affected #: 1 file diff -r ad68e867b900920043d75e109e36e24f88d7a698 -r a9cb31de456c2e9bcdb1022adc1fc972df7bc73a templates/webapps/galaxy/workflow/editor.mako --- a/templates/webapps/galaxy/workflow/editor.mako +++ b/templates/webapps/galaxy/workflow/editor.mako @@ -909,7 +909,7 @@ <div class="toolSectionWrapper"> %if key.startswith( 'tool' ): ${render_tool( val, False )} - %elif key.startswith( 'section' ): + %elif key.startswith( 'section' ) and val.elems: <% section = val %><div class="toolSectionTitle" id="title_${section.id}"><span>${section.name}</span> 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.