Datatable multisort shares info accross instances

see Code Snippet

Reproducing steps:

Sort by category and votes in first datatable while holding ctrl (multisort)
Sort by released in second datatable while holding ctrl (like using multisort)

Second datatable uses sorted columns of the first too. Should now look like this:

_last_order and _last_sorted seem to share a reference accross all instances which will lead to described problem as far as i understand

Hello Jendrik,
This is the issue with datatable sorting functionality, thank you for reporting. The workaround will be to reset the state in every table :

ready (){
this .setState({})
}

Please check the snippet with the workaround: Code Snippet