This commit is contained in:
Diego Imbert
2026-03-27 15:24:53 +01:00
parent 3a17149750
commit 68df399838
3 changed files with 9 additions and 11 deletions
@@ -533,7 +533,7 @@
}}
>
<p class="text-sm">
This will run the following SQL on <b>{parentWorkspaceId}</b>:
This will run the following SQL on workspace <b>{parentWorkspaceId}</b>:
</p>
<pre
class="mt-2 p-3 bg-surface-secondary rounded text-xs font-mono whitespace-pre-wrap max-h-60 overflow-auto"
@@ -192,15 +192,13 @@
</div>
<div class="flex items-center gap-2">
{#if comparison && comparison.summary.total_diffs > 0}
<Button size="xs" color="blue" on:click={openComparisonDrawer}>
{#if comparison.summary.total_ahead > 0}
Review & Deploy Changes
{:else}
Review & Update fork
{/if}
</Button>
{/if}
<Button size="xs" color="blue" on:click={openComparisonDrawer}>
{#if (comparison?.summary.total_ahead ?? 0) > 0}
Review & Deploy Changes
{:else}
Review & Update fork
{/if}
</Button>
</div>
</div>
</div>
@@ -143,7 +143,7 @@
</div>
{:else}
<div class="flex items-center justify-center h-full">
<div class="text-gray-500">{emptyMessage}</div>
<div class="text-hint text-xs">{emptyMessage}</div>
</div>
{/if}