I have to arrays (Name and State Array) and map them togther into one object with the attrbiutes name and state.
Array Name:
["Time", "Riskchanged", "Scope", "Risk4", "Test", "Test(2)"]
Array State:
["In Bearbeitung", "Abgeschlossen", "In Bearbeitung", "Abgeschlossen", "Geplant", "In Bearbeitung"]
Function:
this.testArr = this.riskNamesArr.map( (x, i) => {
return {"name": x, "state": this.riskWorkflowStateArr[i]}
});
This works perfect on all Desktop Browsers but unfortunately not on my iOS Safari Browser.. The mobile Browser just shows nothing if I add those lines..
So is there another approach to get the same result?