israelpohl / vizlaw_frontend

3 stars 3 forks source link

Recycle Bin #4

Open heboet opened 5 years ago

heboet commented 5 years ago

Adding a recycle bin function to discard irrelevant decisions.

heboet commented 5 years ago

Ein Vorschlag (einzufügen nach Zeile 288):

<Icon onClick={() => { const oldItems = this.state.favorites const valueToRemove = this.state.selectedDetail const filteredItems = oldItems.filter(item => item !== valueToRemove) console.log('oncklick', this.state.favorites, this.state.selectedDetail, valueToRemove, filteredItems) this.setState({ favorites: filteredItems }); }} style={{ color: "#f3464d" }} type="delete" />{" "}