Skip to content

Commit

Permalink
fixes #2500
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandunn committed Jun 29, 2020
1 parent b85037b commit b5a59fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Infrastructure Changes

Bug Fixes

- Open by unqiuename to get only the results of the name we are interested in [2338](https://github.com/GMOD/Apollo/pull/2338)
- Open by uniquename to get only the results of the name we are interested in [2338](https://github.com/GMOD/Apollo/pull/2338)
- Fixed ability to add multiple BAMs at once [2352](https://github.com/GMOD/Apollo/pull/2352)
- Fixed export of non-coding RNA if exon not present [2353](https://github.com/GMOD/Apollo/pull/2353)
- Removed sequence panel lookup [2388](https://github.com/GMOD/Apollo/pull/2353)
Expand Down
6 changes: 4 additions & 2 deletions src/gwt/org/bbop/apollo/gwt/client/MainPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -892,10 +892,12 @@ public void toggleLink(ClickEvent clickEvent) {
text += "<div style='margin-left: 10px;'>";
text += "<ul>";
text += "<li>";
text += "<a href='" + publicUrl + "'>Public URL</a>";
text += "<strong>Public URL</strong><br/>";
text += "<a href='" + publicUrl + "'>"+publicUrl+"</a>";
text += "</li>";
text += "<li>";
text += "<a href='" + apolloUrl + "'>Logged in URL</a>";
text += "<strong>Logged in URL</strong><br/>";
text += "<a href='" + apolloUrl + "'>"+apolloUrl+"</a>";
text += "</li>";
text += "</ul>";
text += "</div>";
Expand Down

0 comments on commit b5a59fe

Please sign in to comment.