-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: share link and test #6385
fix: share link and test #6385
Conversation
Deployment Summary
|
@@ -218,7 +218,11 @@ function getNewSelectedFilters({ | |||
Object.entries(tissues ?? {}).map(([id, tissue]) => [tissue.name, id]) | |||
); | |||
|
|||
const allTissueNames = Object.keys(tissueIdsByName); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
allTissueNames = Object.keys(tissueIdsByName);
was returning an empty array, since Object.keys()
doesn't work with Map! TIL 💡
This fixes the bug where share link tissue with tissue name won't get populated in the app state
@@ -25,14 +25,11 @@ const tissueIds = TISSUES.map((tissue) => tissue.id); | |||
|
|||
const GENES = ["DPM1", "TNMD", "TSPAN6"]; | |||
|
|||
const DATASETS = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we've removed datasets as a filter option in the app
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6385 +/- ##
=======================================
Coverage 91.99% 91.99%
=======================================
Files 180 180
Lines 14803 14803
=======================================
Hits 13618 13618
Misses 1185 1185
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
6ce293e
to
f653af4
Compare
Reason for Change
Changes
Testing steps
Checklist 🛎️
Notes for Reviewer