Skip to content

Commit

Permalink
fix template broken in #7234
Browse files Browse the repository at this point in the history
  • Loading branch information
martenson committed Feb 8, 2019
1 parent b6a9761 commit dbf8bec
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1439,10 +1439,10 @@ var FolderToolbarView = Backbone.View.extend({
<% } %>
<% if(Galaxy.config.library_import_dir !== null || Galaxy.config.allow_library_path_paste) { %>
<h5 class="dropdown-header">Admins only</h5>
<% if(Galaxy.config.library_import_dir !== null) { %>
<a class="dropdown-item" href="#folders/<%= id %>/import/importdir">from Import Directory</a>
<% } %>
<% if(Galaxy.config.allow_library_path_paste) { %>",
<% if(Galaxy.config.library_import_dir !== null) { %>
<a class="dropdown-item" href="#folders/<%= id %>/import/importdir">from Import Directory</a>
<% } %>
<% if(Galaxy.config.allow_library_path_paste) { %>
<a class="dropdown-item" href="#folders/<%= id %>/import/path">from Path</a>
<% } %>
<% } %>
Expand Down

0 comments on commit dbf8bec

Please sign in to comment.