You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
click "Set value". Confirm that what you're seeing is expected. (The button sets val1, the step1 function sets val2, and the step2 function sets the output variable.
Switch around line 9 and 10
click "set value" again.
You can see in the console that val2 is still updated, but it not triggering step2. So the output is not updated.
Describe the bug
Some reactive statements do not get triggered based on the order in which you write them:
If
step1
updatesval2
, then that will triggerstep2
. That's expected.However, if we switch the lines around to this:
Now, if
step1
updatesval2
, thenstep2
will not be triggered.It seems wrong that the order of this should have an effect on the outcome.
Reproduction
Repl
Steps to repro:
val1
, thestep1
function setsval2
, and thestep2
function sets the output variable.You can see in the console that
val2
is still updated, but it not triggeringstep2
. So the output is not updated.Logs
No response
System Info
Severity
annoyance
The text was updated successfully, but these errors were encountered: