Skip to content

Commit

Permalink
Fix history list shared error
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Apr 23, 2018
1 parent 9e3cc28 commit a77ea27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/history/history-list.js
Expand Up @@ -93,7 +93,7 @@ var View = Backbone.View.extend({

if (options.action_id == "list_published") {
this.active_tab = "shared";
} else if ((options.action_id = "list")) {
} else if (options.action_id == "list") {
this.active_tab = "user";
}
this.model = new Backbone.Model();
Expand Down

0 comments on commit a77ea27

Please sign in to comment.