From 24c3048cd102818ad38cb88ee26cffa9b2da8787 Mon Sep 17 00:00:00 2001 From: Aaron Lun Date: Mon, 28 Aug 2023 08:35:29 -0700 Subject: [PATCH] Fix references to unique factor levels in UI. (#242) --- package.json | 2 +- src/components/NewAnalysis/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index c114a3c0..b6d0a681 100644 --- a/package.json +++ b/package.json @@ -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": "jayaram.kancherla@gmail.com", diff --git a/src/components/NewAnalysis/index.js b/src/components/NewAnalysis/index.js index 35a37854..04a279aa 100644 --- a/src/components/NewAnalysis/index.js +++ b/src/components/NewAnalysis/index.js @@ -845,7 +845,7 @@ export function NewAnalysis({ setShowPanel, setStateIndeterminate, ...props }) { if (col.type === "categorical") { return (
- {col.__unique__.map((x) => ( + {col.values.map((x) => (
- {col.__unique__.map((x) => ( + {col.values.map((x) => (