Skip to content

Commit

Permalink
Fix error in both Multi Components that incorrectly used the first va…
Browse files Browse the repository at this point in the history
…lue for both outputs
  • Loading branch information
FaeyUmbrea committed Feb 17, 2025
1 parent 0c62d57 commit 8909fb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
{#each Array.from({ length: value1 }, (_, i) => i + 1) as i}
<i class='{icon1} icon-{i}'></i>
{/each}
{#each Array.from({ length: value1 }, (_, i) => i + 1) as i}
{#each Array.from({ length: value2 }, (_, i) => i + 1) as i}
<i class='{icon2} icon-{value1 + i}'></i>
{/each}
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
{#each Array.from({ length: value1 }, (_, i) => i + 1) as i}
<img alt='actor value multi img renderer image-{i}' src={image1} />
{/each}
{#each Array.from({ length: value1 }, (_, i) => i + 1) as i}
{#each Array.from({ length: value2 }, (_, i) => i + 1) as i}
<img
alt='actor value multi img renderer image-{value1 + i}'
src={image2}
Expand Down

0 comments on commit 8909fb3

Please # to comment.