-
I'm having an issue with I've made a codesandbox isolating the core issue I'm experiencing, and it's consistently reproducible in both my own project and in the sandbox. You can see that here: If you add several Then, if you start removing the fields one by one you can see that while the data does update as expected internally, the Note, I do have the additional Like I say, maybe I am just overlooking some detail, missing some reactive declaration somewhere maybe? But if I am I can't see what it is! So, I would appreciate another set of eyes and a sanity check on this. Cheers, and thanks for all the effort on the library, it's much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Promoted this to an issue after several days of banging my head against the wall. There are further problems I'm having with |
Beta Was this translation helpful? Give feedback.
-
Seems to work fine if I use the https://codesandbox.io/s/jolly-nobel-edfr5m Can you confirm if that's the issue or not? |
Beta Was this translation helpful? Give feedback.
Seems to work fine if I use the
data
name for the fields instead offields
. In theuseFieldArray
you are declaringdata
as the iterable while havingfields
as the iterable in the template so they won't be synced when doing array mutations.https://codesandbox.io/s/jolly-nobel-edfr5m
Can you confirm if that's the issue or not?