From 231e659b56617fcdefa7534e14ffcfe50a8c084c Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" <70410625+michael-s-molina@users.noreply.github.com> Date: Mon, 4 Mar 2024 08:15:55 -0500 Subject: [PATCH] fix: Results section in Explore shows an infinite spinner (#27366) --- .../src/explore/components/DataTablesPane/DataTablesPane.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx b/superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx index 15148be88..162f62690 100644 --- a/superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx +++ b/superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx @@ -123,7 +123,8 @@ export const DataTablesPane = ({ if ( panelOpen && activeTabKey.startsWith(ResultTypes.Results) && - chartStatus === 'rendered' + chartStatus && + chartStatus !== 'loading' ) { setIsRequest({ results: true,