From e12c41c5cf45f42ea14943a098ed635ee988ea54 Mon Sep 17 00:00:00 2001 From: justinpark Date: Tue, 4 Jun 2024 17:21:11 -0700 Subject: [PATCH] fix(explore): Drill to detail truncates int64 IDs --- 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;