Skip to content

Commit

Permalink
Fix references to unique factor levels in UI. (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA authored Aug 28, 2023
1 parent 271f1f1 commit 24c3048
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.17",
"version": "3.0.18",
"author": {
"name": "Jayaram Kancherla",
"email": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions src/components/NewAnalysis/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ export function NewAnalysis({ setShowPanel, setStateIndeterminate, ...props }) {
if (col.type === "categorical") {
return (
<div className="subset-section">
{col.__unique__.map((x) => (
{col.values.map((x) => (
<Checkbox
key={"subset-" + x}
checked={subset.values.includes(x)}
Expand Down Expand Up @@ -950,7 +950,7 @@ export function NewAnalysis({ setShowPanel, setStateIndeterminate, ...props }) {
<>
<Divider />
<div className="subset-section">
{col.__unique__.map((x) => (
{col.values.map((x) => (
<Checkbox
key={"subset-" + x}
checked={subset.values.includes(x)}
Expand Down

0 comments on commit 24c3048

Please sign in to comment.