Skip to content

Commit

Permalink
feat(website): remove source column from SeqSet page (#2521)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoran-chen authored Aug 23, 2024
1 parent 899dd0e commit 09234e5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions website/src/components/SeqSetCitations/SeqSetItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ const SeqSetRecordsTable: FC<SeqSetRecordsTableProps> = ({ seqSetRecords, sortBy
<thead>
<tr>
<th className='w-1/3 text-left font-medium'>Accession</th>
<th className='w-1/3 text-left font-medium'>Source</th>
<th className='w-1/3 text-left font-medium'>Context</th>
</tr>
</thead>
Expand All @@ -52,7 +51,6 @@ const SeqSetRecordsTable: FC<SeqSetRecordsTableProps> = ({ seqSetRecords, sortBy
{seqSetRecord.accession}
</a>
</td>
<td className='text-left'>{seqSetRecord.type as string}</td>
<td className='text-left'>{seqSetRecord.isFocal === true ? 'Focal' : 'Background'}</td>
</tr>
);
Expand Down

0 comments on commit 09234e5

Please sign in to comment.