Skip to content

Commit

Permalink
[18.01] Do not reload page when deleting collections.
Browse files Browse the repository at this point in the history
Fixes #5499 reported by @mvdbeek (thanks for catching that).
  • Loading branch information
jmchilton committed Feb 19, 2018
1 parent c20b68a commit d964d59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/galaxy/scripts/mvc/history/hdca-li-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ var HDCAListItemEdit = _super.extend(
</a>
<ul class="dropdown-menu pull-right" role="menu">
<li>
<a href="" class="delete-collection">
<a href="#" class="delete-collection">
${_l("Collection Only")}
</a>
</li>
<li>
<a href="" class="delete-collection-and-datasets">
<a href="#" class="delete-collection-and-datasets">
${_l("Delete Datasets")}
</a>
</li>
<li style="display: ${this.purgeAllowed ? "inherit" : "none"}">
<a href="" class="delete-collection-and-purge-datasets">
<a href="#" class="delete-collection-and-purge-datasets">
${_l("Permanently Delete Datasets")}
</a>
</li>
Expand Down

0 comments on commit d964d59

Please sign in to comment.