From dabb4e064fbff771d54e9fd3174e632dfa02d51b Mon Sep 17 00:00:00 2001 From: "JUST.in DO IT" Date: Wed, 5 Jun 2024 09:03:06 -0700 Subject: [PATCH] fix(explore): Drill to detail truncates int64 IDs (#29081) --- superset-frontend/src/components/Chart/chartAction.js | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/components/Chart/chartAction.js b/superset-frontend/src/components/Chart/chartAction.js index 47602de4de68a..8a9124818424f 100644 --- a/superset-frontend/src/components/Chart/chartAction.js +++ b/superset-frontend/src/components/Chart/chartAction.js @@ -609,6 +609,7 @@ export const getDatasourceSamples = async ( endpoint: '/datasource/samples', jsonPayload, searchParams, + parseMethod: 'json-bigint', }); return response.json.result;