mirror of
https://github.com/apache/superset.git
synced 2026-04-18 23:55:00 +00:00
fix(dashboard): Support bigint value in native filters (#32549)
This commit is contained in:
@@ -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