Skip to content

Commit

Permalink
Merge pull request aces#1384 from MontrealSergiy/sorttag
Browse files Browse the repository at this point in the history
the tool tag list in alphabetic order, resolves aces#1383
  • Loading branch information
prioux authored Jul 23, 2024
2 parents 655fb68 + 7d38f5e commit 03a77d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BrainPortal/app/views/userfiles/_tools_interface.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<%
types = @my_tools.map { |t| t.application_type :array }.flatten.uniq
packages = @my_tools.map { |t| t.application_package_name :array }.flatten.uniq
tags = @my_tools.map { |t| t.application_tags :array }.flatten.uniq
tags = @my_tools.map { |t| t.application_tags :array }.flatten.sort_by{ |tag| tag.downcase }.uniq
%>

<div id="toolsDialog" title="Select Tool" >
Expand Down

0 comments on commit 03a77d4

Please sign in to comment.