Skip to content

Commit

Permalink
ENCD-5456-table-shift (#3464)
Browse files Browse the repository at this point in the history
  • Loading branch information
forresttanaka authored Aug 4, 2020
1 parent 205d94f commit 7b49f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encoded/static/components/filegallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ class RawSequencingTable extends React.Component {
{showReplicateNumber && !rawIsIndex ?
<td rowSpan={rawHasIndex ? 2 : null} className={`table-raw-biorep${nextRawIsIndex ? ' pair-bottom merge-right + table-raw-merged' : ''}`}>{file.biological_replicates && file.biological_replicates.length > 0 ? file.biological_replicates.sort((a, b) => a - b).join(', ') : 'N/A'}</td>
: null}
{showReplicateNumber && !rawIsIndex ?
{!rawIsIndex ?
<td rowSpan={rawHasIndex ? 2 : null} className={nextRawIsIndex ? 'pair-bottom merge-right + table-raw-merged' : null}>{(file.replicate && file.replicate.library) ? file.replicate.library.accession : 'N/A'}</td>
: null}
<td className={singleClass}>
Expand Down

0 comments on commit 7b49f25

Please sign in to comment.