Sunday, September 18, 2022
1 change · master
Resolved issues and error corrections
Form labels are now matched to fields using only visible view identifiers instead of internal technical IDs. This prevents labels from appearing blank or attaching to the wrong field, especially when forms contain repeated field names.
Original PR description
with its label Before this commit, when compiling the field to link the field with a previously found label, to search, we used in order : the 'id' (encoded on the arch), the 'field_id' (an internal technical ID), the 'name' (also in the arch). The issue with this is that the "field_id" is a technical id and shouldn't be used, to search the label. Now, we only search for the 'id' and the 'name'.