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 a01439b commit a014955Copy full SHA for a014955
packages/svelte/src/internal/client/runtime.js
@@ -824,7 +824,8 @@ function update_derived(signal, force_schedule) {
824
destroy_references(signal);
825
const value = execute_signal_fn(signal);
826
updating_derived = previous_updating_derived;
827
- const status = (current_skip_consumer || (signal.f & UNOWNED) !== 0) && signal.d !== null ? DIRTY : CLEAN;
+ const status =
828
+ (current_skip_consumer || (signal.f & UNOWNED) !== 0) && signal.d !== null ? DIRTY : CLEAN;
829
set_signal_status(signal, status);
830
const equals = /** @type {import('./types.js').EqualsFunctions} */ (signal.e);
831
if (!equals(value, signal.v)) {
0 commit comments