style: for plugin-undo-redo

This commit is contained in:
wuji.xwt 2020-09-10 17:34:50 +08:00
parent e435f3e99a
commit e329811afe

View File

@ -68,11 +68,11 @@ export default class UndoRedo extends PureComponent<IProps, IState> {
};
handleUndoClick = (): void => {
this.history?.back();
this.history.back();
};
handleRedoClick = (): void => {
this.history?.forward();
this.history.forward();
};
render(): React.ReactNode {