- Fix the selectAll function. When calling
selectAll
on theVTable
instance we were using thedata
array reference as theselectedRows
, so when the user deselected a row it was removed from thedata
as well. The fix is just to use a shallow copy of thedata
array when setting all the rows as selected. #46