Fix types
Signed-off-by: Robin Townsend <robin@robin.town>
This commit is contained in:
parent
3911666c52
commit
0497e0864f
1 changed files with 2 additions and 2 deletions
|
@ -230,11 +230,11 @@ export default class ImageView extends React.Component<IProps, IState> {
|
|||
}
|
||||
};
|
||||
|
||||
private onZoomInClick = (ev: MouseEvent) => {
|
||||
private onZoomInClick = () => {
|
||||
this.zoomDelta(ZOOM_STEP);
|
||||
};
|
||||
|
||||
private onZoomOutClick = (ev: MouseEvent) => {
|
||||
private onZoomOutClick = () => {
|
||||
this.zoomDelta(-ZOOM_STEP);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue