We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b56781 commit 9b3c146Copy full SHA for 9b3c146
src/containers/Tenant/Query/QueryResult/QueryResultViewer.tsx
@@ -333,7 +333,7 @@ export function QueryResultViewer({
333
{renderRightControls()}
334
</div>
335
{isLoading || isCancelled ? null : <QuerySettingsBanner />}
336
- {isCancelled ? <QueryStoppedBanner /> : null}
+ {isCancelled && data.resultSets?.length ? <QueryStoppedBanner /> : null}
337
<LoaderWrapper loading={isLoading && (!data.resultSets || activeSection !== 'result')}>
338
<Fullscreen className={b('result')}>{renderResultSection()}</Fullscreen>
339
</LoaderWrapper>
0 commit comments