Skip to content
Snippets Groups Projects
Commit ea41b3af authored by Louis's avatar Louis :fire:
Browse files

Fix holding invalid reference to synthetic event

parent 7535ab22
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@
.level-entity {
position: absolute;
z-index: 10;
image-rendering: crisp-edges;
}
.render-controls {
......
......@@ -42,7 +42,10 @@ class App extends Component<{}> {
);
}
set = (name, value = null) => e => this.setState(s => ({ [name]: value && value.call ? value(s) : value || e.currentTarget.value }))
set = (name, value = null) => e => {
const targetValue = e.currentTarget.value
this.setState(s => ({ [name]: value && value.call ? value(s) : value || targetValue }))
}
}
export default App;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment