mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:41:09 +02:00
fix(recipes): each-block local var '_' shadowed the svelte-i18n store
Renamed to '_step' so '$_(...)' inside the loop body resolves to the i18n store instead of the loop element. Push-hook caught it. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
eecf64c1c6
commit
942bcfa0cd
1 changed files with 1 additions and 1 deletions
|
|
@ -416,7 +416,7 @@
|
|||
|
||||
<div class="form-section">
|
||||
<span class="form-label">{$_('recipes.create_form.label_steps')}</span>
|
||||
{#each newSteps as _, i}
|
||||
{#each newSteps as _step, i}
|
||||
<div class="step-edit-row">
|
||||
<span class="step-edit-num">{i + 1}.</span>
|
||||
<input
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue