fix(VnNotes): refs #6336 fix v-for key #310
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#310
Loading…
Reference in New Issue
No description provided.
Delete Branch "6336_fix_vn_notes_key"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -81,2 +81,2 @@
v-for="note in rows"
:key="note.id"
v-for="(note, index) in rows"
:key="note.id ?? index"
Las notas siempre tienen id no? El error parece que venía de no añadir el id en fields. En caso de poder ser null Lo veo ok. Pero creo que es mejor que sea siempre el id de la nota o el index, no mezclado.
La cosa es que si alguien no pone id, va a dar
warnings
i hace que la seccion vaya petada...Pero bueno confiamos en que la gente ponga el
id
jejePues pon siempre el index. Index siempre va a ver. Te lo decía porque no de lugar a confusión. Por que podría darse el caso de que el primer registro tenga id "2" y el segundo registro no tenga id y tenga index "2". Entonces es confuso y puede que de error.