Skip to content

Commit ba8c22e

Browse files
authored
fix: error on table view (#3037)
1 parent 7c63e7a commit ba8c22e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/shared/contexts/query.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,16 @@ const parseCSV = (() => {
498498
return column.type
499499
}
500500

501+
data.table.getOriginalColumnType = (columnKey: string) => {
502+
const column = data.table.columns[columnKey]
503+
504+
if (!column) {
505+
return null
506+
}
507+
508+
return column.fluxDataType
509+
}
510+
501511
queue[idx](data)
502512
}
503513

0 commit comments

Comments
 (0)