diff --git a/frontend/src/lib/components/DisplayResult.svelte b/frontend/src/lib/components/DisplayResult.svelte
index b90216aa14..8fbd7081af 100644
--- a/frontend/src/lib/components/DisplayResult.svelte
+++ b/frontend/src/lib/components/DisplayResult.svelte
@@ -252,7 +252,7 @@
{#if result != undefined && length != undefined && largeObject != undefined}
- {#if (resultKind && !['json', 's3object', 's3object-list'].includes(resultKind) && !hideAsJson) || isTableDisplay}
+ {#if (resultKind && !['json', 's3object', 's3object-list', 'table-col', 'table-row'].includes(resultKind) && !hideAsJson) || isTableDisplay}
{
if (isTableDisplay) {
richRender = ev.detail === 'table'
- } else {
- forceJson = ev.detail === 'json'
}
+ forceJson = ev.detail === 'json'
}}
>
- {#if resultKind && !['json', 's3object', 's3object-list'].includes(resultKind) && !hideAsJson}
+ {#if resultKind && !['json', 's3object', 's3object-list', 'table-col', 'table-row'].includes(resultKind) && !hideAsJson}
{/if}
{#if isTableDisplay}