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
It seems Cycle.js automatically assumes all unspecified sources should be isolated with a default scope, which means the above code is equivalent to
importisolatefrom'@cycle/isolate';isolate(Form,{state: stateLens,DOM: 'cycle1'/* the default scope name */})({DOM,
state,})
This behaviour breaks the submit button because it cannot interfere with form's `submit event.
Something like this is needed, but the current API isn't possible:
When isolating form like this:
It seems Cycle.js automatically assumes all unspecified sources should be isolated with a default scope, which means the above code is equivalent to
This behaviour breaks the submit button because it cannot interfere with
form
's `submit event.Something like this is needed, but the current API isn't possible:
The text was updated successfully, but these errors were encountered: