Skip to content

Commit

Permalink
Fix URL for workflow editor 'Run' button
Browse files Browse the repository at this point in the history
On the current dev this would point to api/workflows//download?style=run
and result in `Error occurred while loading the resource.`
  • Loading branch information
mvdbeek committed Aug 3, 2017
1 parent ade8844 commit 32bd350
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/workflow/workflow-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ define([
"Save" : save_current_workflow,
"Save As": workflow_save_as,
"Run": function() {
window.location = self.urls.run_workflow;
window.location = Galaxy.root + "workflow/run?id=" + self.options.id;
},
"Edit Attributes" : function() { self.workflow.clear_active_node() },
"Auto Re-layout": layout_editor,
Expand Down
2 changes: 1 addition & 1 deletion static/maps/mvc/workflow/workflow-view.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 32bd350

Please sign in to comment.