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
This fails with a type mismatch resolving the Signal type for SubData (FormField for Vec is only implemented where Signal is FormFieldSignal<T>, but for SubData it's __SubDataSignal).
Am I missing any existing option that would help get around this
If not, should Signal on SubData be changed to FormFieldSignal<__SubDataSignal>, or would a different approach be better?
The text was updated successfully, but these errors were encountered:
As it currently stands, I'm having difficulty making a form involving a Vec of Structs, even if those structs derive Form themselves. ie:
This fails with a type mismatch resolving the Signal type for SubData (FormField for Vec is only implemented where Signal is
FormFieldSignal<T>
, but for SubData it's__SubDataSignal
).FormFieldSignal<__SubDataSignal>
, or would a different approach be better?The text was updated successfully, but these errors were encountered: