Add a missing space
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
67a57ead96
commit
7b6d393754
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ export default class ImageView extends React.Component {
|
|||
onWheel = (ev) => {
|
||||
ev.stopPropagation();
|
||||
ev.preventDefault();
|
||||
const newZoom =this.state.zoom - ev.deltaY;
|
||||
const newZoom = this.state.zoom - ev.deltaY;
|
||||
|
||||
if (newZoom <= MIN_ZOOM) {
|
||||
this.setState({
|
||||
|
|
Loading…
Reference in a new issue