Skip to content

Commit

Permalink
Merge pull request galaxyproject#17117 from bernt-matthias/fix/tool_p…
Browse files Browse the repository at this point in the history
…anel_dups_in_section

[23.1] Remove duplicates when copying sections for tool panel view
  • Loading branch information
mvdbeek authored Jan 11, 2024
2 parents 3fcd02a + efa2f58 commit c3e53c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tool_util/toolbox/views/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def definition_with_items_to_panel(definition, allow_sections: bool = True, item
f"Failed to find matching section for (id, name) = ({section_def.id}, {section_def.name})"
)
continue
section = closest_section.copy()
section = closest_section.copy(merge_tools=True)
if section_def.id is not None:
section.id = section_def.id
if section_def.name is not None:
Expand Down

0 comments on commit c3e53c4

Please sign in to comment.