mirror of
https://github.com/apache/superset.git
synced 2026-05-11 10:55:43 +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
@@ -148,7 +148,7 @@ export default function transformProps(
|
||||
if (!value) {
|
||||
return NULL_STRING;
|
||||
}
|
||||
if (typeof value === 'boolean') {
|
||||
if (typeof value === 'boolean' || typeof value === 'bigint') {
|
||||
return String(value);
|
||||
}
|
||||
return value;
|
||||
|
||||
Reference in New Issue
Block a user