Skip to content

Commit 25a6015

Browse files
committed
Bugfix to JBrowse table filtering
1 parent 351bddf commit 25a6015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbrowse/src/client/JBrowse/VariantSearch/constants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
} from '@mui/x-data-grid';
88
import { arrayMax } from '../utils';
99

10-
export const parseCellValue = (cellValue) => JSON.stringify(cellValue ?? "").split(",").map(str => {
10+
export const parseCellValue = (cellValue) => String(cellValue ?? "").split(",").map(str => {
1111
return Number(str);
1212
})
1313

0 commit comments

Comments
 (0)