File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,9 +57,7 @@ const showError = computed(
5757const isAutoDownloadType = computed (
5858 () => dataset .value && datatypeStore .isDatatypeAutoDownload (dataset .value .file_ext )
5959);
60- const downloadUrl = computed (
61- () => withPrefix (` /datasets/${props .datasetId }/display ` )
62- );
60+ const downloadUrl = computed (() => withPrefix (` /datasets/${props .datasetId }/display ` ));
6361const preferredVisualization = computed (
6462 () => dataset .value && datatypeStore .getPreferredVisualization (dataset .value .file_ext )
6563);
Original file line number Diff line number Diff line change @@ -560,7 +560,7 @@ export function getRouter(Galaxy) {
560560 component : WorkflowLanding ,
561561 props : ( route ) => ( {
562562 uuid : route . params . uuid ,
563- public : route . query . public . toLowerCase ( ) === "true" ,
563+ public : ( route . query . public || "" ) . toLowerCase ( ) === "true" ,
564564 secret : route . query . client_secret ,
565565 } ) ,
566566 beforeEnter : requireAuth ,
You can’t perform that action at this time.
0 commit comments