Skip to content

Commit 031796a

Browse files
committed
fix: isFetching
1 parent 0e085f5 commit 031796a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/containers/Tenant/Diagnostics/TopQueries/RunningQueriesData.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const RunningQueriesData = ({
101101

102102
return (
103103
<DrawerWrapper
104-
isDrawerVisible={isDrawerVisible && !isFetching}
104+
isDrawerVisible={isDrawerVisible}
105105
onCloseDrawer={handleCloseDetails}
106106
renderDrawerContent={renderDrawerContent}
107107
drawerId="running-query-details"

src/containers/Tenant/Diagnostics/TopQueries/TopQueriesData.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export const TopQueriesData = ({
129129

130130
return (
131131
<DrawerWrapper
132-
isDrawerVisible={isDrawerVisible && !isFetching}
132+
isDrawerVisible={isDrawerVisible}
133133
onCloseDrawer={handleCloseDetails}
134134
renderDrawerContent={renderDrawerContent}
135135
drawerId="query-details"

0 commit comments

Comments
 (0)