I have some code that changes the "Y" value of the translation property on a RowList.
This works
m.vueRowList.translation = [m.vueRowList.translation[0], m.vueRowList.translation[1] + topGroupHeight]
This does not
m.vueRowList.translation[1] = m.vueRowList.translation[1] + topGroupHeight
Why?