Skip to content

Commit 22a52d6

Browse files
authored
Fix function to access key for the modality (#260)
* Fix function to access name for the modality * Bump app
1 parent a296398 commit 22a52d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kana",
33
"description": "Single-cell data analysis in the browser",
4-
"version": "3.0.23",
4+
"version": "3.0.24",
55
"author": {
66
"name": "Jayaram Kancherla",
77
"email": "[email protected]",

src/components/NewAnalysis/ZippedADBCard.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,9 @@ export function ZippedADB({
294294
) {
295295
let tmpOptions = { ...options };
296296
if (e.target.value === "none") {
297-
tmpOptions[getAssayNameKey] = null;
297+
tmpOptions[getAssayNameKey(mod)] = null;
298298
} else {
299-
tmpOptions[getAssayNameKey] = e.target.value;
299+
tmpOptions[getAssayNameKey(mod)] = e.target.value;
300300
}
301301
setOptions(tmpOptions);
302302
}

0 commit comments

Comments
 (0)