Skip to content

Commit

Permalink
remove NAs
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed May 21, 2024
1 parent 8562aa5 commit 6fefe53
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions website/src/components/SequenceDetailsPage/getTableData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ function toTableData(config: Schema) {
}): TableDataEntry[] => {
const data: TableDataEntry[] = config.metadata
.filter((metadata) => metadata.hideOnSequenceDetailsPage !== true)
.filter((metadata) => details[metadata.name] !== null && metadata.name in details)
.map((metadata) => ({
label: metadata.displayName ?? sentenceCase(metadata.name),
name: metadata.name,
Expand Down

0 comments on commit 6fefe53

Please sign in to comment.