diff --git a/client/src/components/continuous/continuous.js b/client/src/components/continuous/continuous.js index f1119507..ad5c908d 100644 --- a/client/src/components/continuous/continuous.js +++ b/client/src/components/continuous/continuous.js @@ -14,12 +14,7 @@ class Continuous extends React.PureComponent { if (!schema) return null; const obsIndex = schema.annotations.obs.index; const allContinuousNames = schema.annotations.obs.columns - .filter( - (col) => - col.type === "int32" || - col.type === "float32" || - col.type === "float64" - ) + .filter((col) => col.type === "int32" || col.type === "float32") .filter((col) => col.name !== obsIndex) .filter((col) => !col.writable) // skip user annotations - they will be treated as categorical .map((col) => col.name);