Skip to content

Commit

Permalink
Unescape tool id before parsing to tool form builder
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Jun 26, 2017
1 parent 9dca211 commit 368be18
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/apps/analysis.js
Expand Up @@ -190,7 +190,7 @@ window.app = function app( options, bootstrapped ){
/** load the center panel with a tool form described by the given params obj */
_loadToolForm : function( params ){
//TODO: load tool form code async
params.id = params.tool_id;
params.id = unescape( params.tool_id );
centerPanel.display( new ToolForm.View( params ) );
},

Expand Down
4 changes: 2 additions & 2 deletions static/scripts/bundled/analysis.bundled.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/bundled/analysis.bundled.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/bundled/libs.bundled.js.map

Large diffs are not rendered by default.

0 comments on commit 368be18

Please sign in to comment.