Skip to content

Commit 873e969

Browse files
committed
Change to dense instead of compact
1 parent 3638466 commit 873e969

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/lib/components/workflow/workflows-summary-configurable-table

src/lib/components/workflow/workflows-summary-configurable-table/table-row.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
workflowId={workflow.id}
7373
taskQueue={workflow.taskQueue}
7474
workflowType={workflow.name}
75-
class={$tableDensity === 'compact' ? 'mt-1 h-5 w-5' : ''}
75+
class={$tableDensity === 'dense' ? 'mt-1 h-5 w-5' : ''}
7676
/>
7777
{/if}
7878
<IsTemporalServerVersionGuard minimumVersion="1.23.0">
@@ -81,7 +81,7 @@
8181
size="xs"
8282
variant={childrenShown ? 'primary' : 'ghost'}
8383
on:click={() => viewChildren(workflow)}
84-
class={$tableDensity === 'compact' ? 'mt-1 h-5 w-5' : ''}
84+
class={$tableDensity === 'dense' ? 'mt-1 h-5 w-5' : ''}
8585
>
8686
<Tooltip
8787
text={childrenShown

0 commit comments

Comments
 (0)