Skip to content

Commit 7987070

Browse files
committed
removed hardcoded client root
1 parent 2b619a1 commit 7987070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/biorepo_components/BiorepoChecklistsContent.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function renderNode(nodes: any[], depth = 0) {
1717
return nodes.map((node, index) => {
1818
const isLastChild = index === nodes.length - 1;
1919
const collidLink = node.collid
20-
? `https://biokic4.rc.asu.edu/neon/portal/checklists/checklist.php?clid=${node.collid}`
20+
? `../checklists/checklist.php?clid=${node.collid}`
2121
: null;
2222

2323
const nodeContent = collidLink ? (

0 commit comments

Comments
 (0)