How to transfer an array item to another array and update it using Angular Material Drag n Drop CDK without both items binding to the same paramter
You'll need to create a copy of the original item, then add the copy to the 2nd list. There are a lot of ways to copy an object but basically something like this:
function createCopy(orig){
return JSON.parse(JSON.stringify(orig))
}