Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into feat/exp-res-display
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 14, 2023
2 parents f457663 + 82305e8 commit bceb587
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bento_web",
"version": "3.1.1",
"version": "3.1.2",
"description": "Bento platform front-end",
"main": "src/index.js",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/explorer/IndividualPhenotypicFeatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ const IndividualPhenotypicFeatures = ({ individual }) => {
header: p.id,
key: p.id,
}] : []), // If there is just 1 phenopacket, don't include a header row
...p.phenotypic_features.map((pf) => ({
...(p.phenotypic_features ?? []).map((pf) => ({
...pf,
key: `${pf.type.id}:${pf.negated}`,
key: `${p.id}:${pf.type.id}:${pf.negated}`,
})),
]);
}, [individual]);
Expand Down

0 comments on commit bceb587

Please sign in to comment.