Skip to content

Commit

Permalink
Fix more routes for consistency and resilience
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Nov 13, 2017
1 parent 63c61d2 commit d6d5770
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/tag.js
Expand Up @@ -103,7 +103,7 @@ var TagsEditor = Backbone.View.extend(baseMVC.LoggableMixin)

_renderTags: function() {
var tags = this.model.get("tags");
var addButton = "static/images/fugue/tag--plus.png";
var addButton = `${Galaxy.root}static/images/fugue/tag--plus.png`;
var renderedArray = [];
_.each(tags, tag => {
tag = tag.indexOf("name:") == 0 ? tag.slice(5) : tag;
Expand Down
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/workflow/workflow.js
Expand Up @@ -36,7 +36,7 @@ var WorkflowItemView = Backbone.View.extend({
this.model.save();
// This reloads the whole page, so that the workflow appears in the tool panel.
// Ideally we would notify only the tool panel of a change
window.location = `${Galaxy.root}workflow`;
window.location = `${Galaxy.root}workflows/list`;
},

removeWorkflow: function() {
Expand Down
2 changes: 1 addition & 1 deletion static/maps/mvc/tag.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/maps/mvc/workflow/workflow.js.map

Large diffs are not rendered by default.

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.

2 changes: 1 addition & 1 deletion static/scripts/mvc/tag.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion static/scripts/mvc/workflow/workflow.js

Large diffs are not rendered by default.

0 comments on commit d6d5770

Please sign in to comment.