Skip to content

Commit

Permalink
Allow gnomad fields to display as empty if missing (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
frewmack authored Jun 4, 2024
1 parent 8428407 commit 7d0094d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions react/src/utils/tableHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ const addAdditionalFieldsAndFormatNulls = (
uniqueId,
cdna: results.cdna || 'NA',
aaChange: results.aaChange || 'NA',
af: results.af || 0,
ac: results.ac || 0,
gnomadHom: results.gnomadHom || 0,
af: results.af,
ac: results.ac,
gnomadHom: results.gnomadHom,
// gnomadHet: results.gnomadHet || 0,
maleCount: 0,
geneName: !!results.geneName ? results.geneName! : 'Not Specified',
Expand Down

0 comments on commit 7d0094d

Please sign in to comment.