diff --git a/frontend/src/lib/components/apps/components/display/table/AppTable.svelte b/frontend/src/lib/components/apps/components/display/table/AppTable.svelte
index 3c71e9f2ce..79e66113be 100644
--- a/frontend/src/lib/components/apps/components/display/table/AppTable.svelte
+++ b/frontend/src/lib/components/apps/components/display/table/AppTable.svelte
@@ -242,16 +242,28 @@
toggleRow(row, rowIndex)}>
{#each actionButtons as actionButton, actionIndex (actionIndex)}
- {
- toggleRow(row, rowIndex)
- }}
- extraQueryParams={{ row: row.original }}
- bind:componentInput={actionButton.componentInput}
- bind:staticOutputs={$staticOutputsStore[actionButton.id]}
- />
+ {#if rowIndex == 0}
+ {
+ toggleRow(row, rowIndex)
+ }}
+ extraQueryParams={{ row: row.original }}
+ bind:componentInput={actionButton.componentInput}
+ bind:staticOutputs={$staticOutputsStore[actionButton.id]}
+ />
+ {:else}
+ {
+ toggleRow(row, rowIndex)
+ }}
+ extraQueryParams={{ row: row.original }}
+ bind:componentInput={actionButton.componentInput}
+ />
+ {/if}
{/each}
|