Actions
Bug #8925
closedCB Repeat: ids, names, and for attributes containing underscores breaks normalizing
Description
These values are normalized so they can replace matching child nodes, but this breaks if for example the name contains an underscore. Example as follows.
cbfr_integrations__options_prices____0___first_different
SHOULD normalize to the following.
integrations__options_prices____0
This is then indexed to the next index becoming the following.
integrations__options_prices____1
Now every child node with integrations__options_prices____0 in its ID becomes integrations__options_prices____1. Except this fails since the normalization doesn't happen due to the underscore in first_different. The result is conditions dependent on first_different in the new repeat row don't update.
Actions