Skip to content

Commit

Permalink
Fix function to access key for the modality (#260)
Browse files Browse the repository at this point in the history
* Fix function to access name for the modality
* Bump app
  • Loading branch information
jkanche committed Apr 24, 2024
1 parent a296398 commit 22a52d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kana",
"description": "Single-cell data analysis in the browser",
"version": "3.0.23",
"version": "3.0.24",
"author": {
"name": "Jayaram Kancherla",
"email": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions src/components/NewAnalysis/ZippedADBCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ export function ZippedADB({
) {
let tmpOptions = { ...options };
if (e.target.value === "none") {
tmpOptions[getAssayNameKey] = null;
tmpOptions[getAssayNameKey(mod)] = null;
} else {
tmpOptions[getAssayNameKey] = e.target.value;
tmpOptions[getAssayNameKey(mod)] = e.target.value;
}
setOptions(tmpOptions);
}
Expand Down

0 comments on commit 22a52d6

Please sign in to comment.