I’m a bit stuck. I cloned a row within a column and now I want to remove the last row (the original row that was cloned). Normally, that’s a pretty straightforward process that looks like this:
But it’s not working properly because I have a column with another row within inside of the cloned row (ignore the label):
So when I remove the last row in the “Column container”, it actually removes one of the “Row (interior)” components instead of the “Row to clone” component that I want removed. I’ve tried removing the “first” item in the list instead of the “last” but that also didn’t work.
Any ideas about how to correctly reference the “Row to clone” component? I think I can do so mathematically but I’m interested in a way that doesn’t involve somewhat tricky math.
In other parts of my project, I’ve used blocks like this to reference a specific component (in this case, the first button in each cloned row):
But I can’t seem to wrap my mind around how to reference the row I need.