mirror of
https://github.com/apache/superset.git
synced 2026-05-12 03:15:55 +00:00
fix(dashboard): Support bigint value in native filters (#32549)
(cherry picked from commit e7721a8c4d)
This commit is contained in:
committed by
Michael S. Molina
parent
bdb9f48044
commit
2f9edd3b0e
@@ -363,7 +363,7 @@ export function formatSeriesName(
|
||||
if (name === undefined || name === null) {
|
||||
return NULL_STRING;
|
||||
}
|
||||
if (typeof name === 'boolean') {
|
||||
if (typeof name === 'boolean' || typeof name === 'bigint') {
|
||||
return name.toString();
|
||||
}
|
||||
if (name instanceof Date || coltype === GenericDataType.Temporal) {
|
||||
|
||||
Reference in New Issue
Block a user