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
currently when a signal changes it notifies all elements that rely on it to change.
if when this signal changes new signals are added to the dependency list it appends them too.
example:
// in this example name is not a dependency of this custom page-body unless toggle is true.// if name changes but toggle is true there is no need to rerender the screen// however if toggle is true then it must rerender whenener name changesvarbody:somePage{H1(toggle ? "hello":"hello \(name)")}
Problem
currently once a dependency is added as a signal of a element it never gets removed and therefore will lead to unnecessary re-renders.
The text was updated successfully, but these errors were encountered:
currently when a signal changes it notifies all elements that rely on it to change.
if when this signal changes new signals are added to the dependency list it appends them too.
example:
Problem
currently once a dependency is added as a signal of a element it never gets removed and therefore will lead to unnecessary re-renders.
The text was updated successfully, but these errors were encountered: