Skip to content

Commit

Permalink
Merge pull request #428 from hammerlab/issue-421-react-record-key-war…
Browse files Browse the repository at this point in the history
…ning

Fix #421 by adding keys to VCFRecord
  • Loading branch information
danvk committed Jan 16, 2015
2 parents 7ec773b + 02513b9 commit a10b0ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cycledash/static/js/examine/components/VCFTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ var VCFRecord = React.createClass({
{'has-comment': _.has(this.props.record, 'comment')});
var tds = [
<td className={commentClasses} key='has-comment'></td>,
<td title="This record is a true positive.">
<td title="This record is a true positive." key='true-positive'>
{this.props.record['tag:true-positive'] ? '✓' : ''}
</td>,
<td key='contig-position'
Expand Down

0 comments on commit a10b0ed

Please sign in to comment.