We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b8b8c6 commit f028938Copy full SHA for f028938
packages/svelte/src/internal/client/each.js
@@ -418,7 +418,8 @@ function reconcile_tracked_array(
418
}
419
} else {
420
var is_animated = (flags & EACH_IS_ANIMATED) !== 0;
421
- var should_update_block = (flags & (EACH_ITEM_REACTIVE | EACH_INDEX_REACTIVE)) !== 0 || is_animated;
+ var should_update_block =
422
+ (flags & (EACH_ITEM_REACTIVE | EACH_INDEX_REACTIVE)) !== 0 || is_animated;
423
var start = 0;
424
425
/** @type {null | Text | Element | Comment} */
0 commit comments