BoostV / process-optimizer-frontend

A web frontend for ProcessOptimizer
BSD 3-Clause "New" or "Revised" License
10 stars 3 forks source link

Fix bug where transfering all suggestions results in duplicate ids #231

Closed j-or closed 1 year ago

j-or commented 1 year ago

Turns out Math.max(...state.dataPoints.map(d => d.meta.id)) is a bad idea, because while Math.max([]) is 0, Math.max(...[]) is -Infinity 😞