Skip to content

Commit

Permalink
Fixing sveltejs#2689, however this makes 4 (or 8 with hydrate) tests …
Browse files Browse the repository at this point in the history
…fail.
  • Loading branch information
bwbroersma committed May 5, 2019
1 parent 43f82af commit 1d23ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compile/render-dom/wrappers/EachBlock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ export default class EachBlockWrapper extends Wrapper {
if (outro_block) {
block.builders.outro.add_block(deindent`
${iterations} = ${iterations}.filter(Boolean);
for (let #i = 0; #i < ${view_length}; #i += 1) ${outro_block}(#i, 0);`
for (let #i = 0; #i < ${view_length}; #i += 1) ${outro_block}(#i, 0, local);`
);
}

Expand Down

0 comments on commit 1d23ef9

Please sign in to comment.