Skip to content

Commit b5fef1e

Browse files
committed
fix: don't render Paired End Step: None if we're not consuming fastqs
1 parent c317565 commit b5fef1e

File tree

1 file changed

+1
-1
lines changed
  • app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/PairedEndStep

1 file changed

+1
-1
lines changed

app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/PairedEndStep/step.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const STEP = {
99
label: "Paired-End Sequencing Data",
1010
renderValue({ readRuns }): string | undefined {
1111
if (readRuns === null) return LABEL.NONE;
12-
if (readRuns === undefined) return LABEL.NONE;
12+
if (readRuns === undefined) return undefined;
1313
if (readRuns.length === 0) return "User upload to Galaxy";
1414
return readRuns.map(({ runAccession }) => runAccession).join(", ");
1515
},

0 commit comments

Comments
 (0)