Fix: fix dissappearing items to apply
This commit is contained in:
parent
689270405e
commit
a935c03631
1 changed files with 4 additions and 4 deletions
|
@ -119,7 +119,7 @@
|
||||||
<Tr t={t.conflicting.intro} />
|
<Tr t={t.conflicting.intro} />
|
||||||
{/if}
|
{/if}
|
||||||
{#if $different.length > 0}
|
{#if $different.length > 0}
|
||||||
{#each $different as key}
|
{#each $different as key (key)}
|
||||||
<div class="mx-2 rounded-2xl">
|
<div class="mx-2 rounded-2xl">
|
||||||
<ComparisonAction
|
<ComparisonAction
|
||||||
{key}
|
{key}
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
|
|
||||||
{#if $missing.length > 0}
|
{#if $missing.length > 0}
|
||||||
{#if currentStep === "init"}
|
{#if currentStep === "init"}
|
||||||
{#each $missing as key}
|
{#each $missing as key (key)}
|
||||||
<div class:glowing-shadow={applyAllHovered} class="mx-2 rounded-2xl">
|
<div class:glowing-shadow={applyAllHovered} class="mx-2 rounded-2xl">
|
||||||
<ComparisonAction
|
<ComparisonAction
|
||||||
{key}
|
{key}
|
||||||
|
@ -174,7 +174,7 @@
|
||||||
{#if readonly}
|
{#if readonly}
|
||||||
<div class="w-full overflow-x-auto">
|
<div class="w-full overflow-x-auto">
|
||||||
<div class="flex h-32 w-max gap-x-2">
|
<div class="flex h-32 w-max gap-x-2">
|
||||||
{#each $unknownImages as image}
|
{#each $unknownImages as image (image)}
|
||||||
<AttributedImage
|
<AttributedImage
|
||||||
imgClass="h-32 w-max shrink-0"
|
imgClass="h-32 w-max shrink-0"
|
||||||
image={{ url: image }}
|
image={{ url: image }}
|
||||||
|
@ -184,7 +184,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
{#each $unknownImages as image}
|
{#each $unknownImages as image (image)}
|
||||||
<LinkableImage
|
<LinkableImage
|
||||||
{tags}
|
{tags}
|
||||||
{state}
|
{state}
|
||||||
|
|
Loading…
Reference in a new issue