Skip to content

Commit

Permalink
fix: add ?public=true to workflow landing urls (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterckx committed Oct 25, 2024
1 parent c374774 commit 67729d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/galaxy-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export async function getWorkflowLandingUrl(
},
});
const id = (await res.json()).uuid;
return WORKFLOW_LANDING_URL_PREFIX + encodeURIComponent(id);
return `${WORKFLOW_LANDING_URL_PREFIX}${encodeURIComponent(id)}?public=true`;
}

/**
Expand Down

0 comments on commit 67729d6

Please sign in to comment.