0👍
It looks like this is because you are assigning selected player
to players
array.
In both edit and delete methods you have this.players = Object.assign({}, player)
I think you mean to have this.currentPlayer = Object.assign({}, player)
instead
Source:stackexchange.com