Skip to content

Commit

Permalink
Adjust to new API
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Oct 22, 2024
1 parent 0a04aff commit 39c4dee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/pages/workflow/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ async function createLandingPage() {
workflow_id: trs_url,
workflow_target_type: "trs_url",
request_state: job,
public: true,
}),
});
const json = await response.json();
const landingPage = `${selectedInstance.value}/workflow_landings/${json["uuid"]}`;
const landingPage = `${selectedInstance.value}/workflow_landings/${json["uuid"]}?public=true`;
window.open(landingPage, "_blank");
}
Expand Down

0 comments on commit 39c4dee

Please sign in to comment.