0👍
The problem was that I returned reference but not new object. So I cloned instance by
let info = JSON.parse(JSON.stringify(this.sources[source.source_type]));
Thank’s for help!
Source:stackexchange.com
0👍
The problem was that I returned reference but not new object. So I cloned instance by
let info = JSON.parse(JSON.stringify(this.sources[source.source_type]));
Thank’s for help!