Skip to content

Commit

Permalink
Merge pull request #3962 from lenikadali/3886-fix-wrong-colors-in-lin…
Browse files Browse the repository at this point in the history
…k-table-dialog

Swap Pill declarations to fix wrong colors in the Link Table dialog
  • Loading branch information
seancolsen authored Oct 15, 2024
2 parents 70191b3 + c723101 commit 35798e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
<svelte:fragment slot="header">
<RichText text={$_('we_will_add_a_column_in_x_to_y')} let:slotName>
{#if slotName === 'baseTable'}
<Pill table={base} which={baseWhich} />
<Pill table={base} which={targetWhich} />
{:else if slotName === 'targetTable'}
<Pill table={target} which={targetWhich} />
<Pill table={target} which={baseWhich} />
{/if}
</RichText>
</svelte:fragment>
Expand Down

0 comments on commit 35798e7

Please sign in to comment.