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 dcbb740 commit b6a26aeCopy full SHA for b6a26ae
packages/svelte/src/internal/client/reactivity/sources.js
@@ -169,6 +169,9 @@ export function internal_set(source, value) {
169
source.updated = get_stack('UpdatedAt');
170
171
if (active_effect !== null) {
172
+ // Signal that we should increment the write version
173
+ // after the current effect has run, so that it is
174
+ // marked dirty if the effect uses `$inspect.trace()`
175
source.trace_need_increase = true;
176
}
177
0 commit comments