We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 351bddf commit 25a6015Copy full SHA for 25a6015
jbrowse/src/client/JBrowse/VariantSearch/constants.tsx
@@ -7,7 +7,7 @@ import {
7
} from '@mui/x-data-grid';
8
import { arrayMax } from '../utils';
9
10
-export const parseCellValue = (cellValue) => JSON.stringify(cellValue ?? "").split(",").map(str => {
+export const parseCellValue = (cellValue) => String(cellValue ?? "").split(",").map(str => {
11
return Number(str);
12
})
13
0 commit comments