Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fields.pop fields.remove fields.shift removes last item, any fix? #128

Open
IzaGz opened this issue Mar 17, 2020 · 3 comments
Open

fields.pop fields.remove fields.shift removes last item, any fix? #128

IzaGz opened this issue Mar 17, 2020 · 3 comments

Comments

@IzaGz
Copy link

IzaGz commented Mar 17, 2020

BUG

"react-final-form": "^6.3.0",
"react-final-form-arrays": "^3.1.1",
"final-form": "^4.18.5",
"final-form-arrays": "^3.0.1",

just use this and every time last item removd, how ti fix this?

@toshiSat
Copy link

Same thing is happening for me

@silentorb
Copy link

silentorb commented May 19, 2020

The underlying state is properly getting updated but the rendered react components become stale. It looks like a problem with this library's intended usage of wrapping each item field with:

<div key={name}>

When there is an array named foo and it has two items, the names of those items are foo[0] and foo[1]. When foo[0] is deleted, foo[1] takes it's place and is rendered as foo[0], which either React or Final Form sees as the original `foo[0] and assumes it hasn't changed.

In my case the issue was fixed by generating unique temporary keys for each item and wrapping each field with:

<div key={fields.value[i].key}>

@wdfinch
Copy link

wdfinch commented Sep 15, 2020

Thanks, @silentorb this worked for me. Wish this could be fixed by default.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants