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 6281836 commit 22ae61bCopy full SHA for 22ae61b
packages/svelte/src/internal/client/runtime.js
@@ -770,6 +770,8 @@ export function get(signal) {
770
var target = derived;
771
772
while (parent !== null) {
773
+ // Attach the derived to the nearest parent effect, if there are deriveds
774
+ // in between then we also need to attach them too
775
if ((parent.f & DERIVED) !== 0) {
776
var parent_derived = /** @type {Derived} */ (parent);
777
0 commit comments