Fix ToolShed link in Admin->Local Data

This commit is contained in:
davelopez
2021-03-05 14:47:31 -05:00
committed by John Chilton
parent 276438d75a
commit a63db7f00d
@@ -4,7 +4,7 @@
<h2 id="data-managers-title">Local Data</h2>
<p>
Data Managers are used to manage Galaxy's local data. They can be installed manually, or via the
<b-link :href="toolShedLink" target="galaxy_main">ToolShed</b-link>. For more comprehensive information
<b-link :href="toolShedLink">ToolShed</b-link>. For more comprehensive information
<b-link href="https://galaxyproject.org/admin/tools/data-managers/" target="_blank">See the Wiki</b-link
>.
</p>
@@ -18,7 +18,7 @@ import { getAppRoot } from "onload/loadConfig";
export default {
computed: {
toolShedLink() {
return `${getAppRoot()}admin_toolshed/browse_tool_sheds`;
return `${getAppRoot()}admin/toolshed`;
},
},
};