Skip to content

Commit 1f467b6

Browse files
committed
bugfix to url
1 parent 084f20f commit 1f467b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mcc/src/client/GeneticsPlot/SequenceDataTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export default function SequenceDataTable(props: {data: any}) {
1212
return (
1313
<a
1414
target="_blank"
15-
href={params.value}
16-
>{params.value ? "https://trace.ncbi.nlm.nih.gov/Traces/sra/?run=" + params.value : ""}</a>
15+
href={params.value ? "https://trace.ncbi.nlm.nih.gov/Traces/sra/?run=" + params.value : ""}
16+
>{params.value}</a>
1717
);
1818
}},
1919
{ field: 'total_reads', headerName: 'Total Reads', width: 125, type: "number", headerAlign: 'left', flex: 1 }

0 commit comments

Comments
 (0)