I have created a repeating gallery that consists of two dropdowns and 2 multiline text fields and a button that patches the information to a collection (before being saved to a SharePoint list via a patch submit script.
The first patch to collection appears to work correctly:

I then add another item:

and I go onto add a 3rd item:

but then if I scroll up to the first item, the text boxes have changed to the values I used in the first item!! 🆘

I can't figure out how or why this is happening???
This is the script I'm using on the + button:
Patch(colDocData, ThisItem, {Subtopic: Subtopic_dd.Selected.Result, SubtopicBreakdown: SubtopicBreakdown_dd.Selected.Result, Argument: Argument_input.Text, Evidence: Evidence_input.Text}); Collect(colDocData, {SubtopicBreakdown: SubtopicBreakdown_dd.Selected.Result})
Any help would be appreciated! 🙂