mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-20 15:38:32 +00:00
style: for plugin-undo-redo
This commit is contained in:
parent
e435f3e99a
commit
e329811afe
@ -68,11 +68,11 @@ export default class UndoRedo extends PureComponent<IProps, IState> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
handleUndoClick = (): void => {
|
handleUndoClick = (): void => {
|
||||||
this.history?.back();
|
this.history.back();
|
||||||
};
|
};
|
||||||
|
|
||||||
handleRedoClick = (): void => {
|
handleRedoClick = (): void => {
|
||||||
this.history?.forward();
|
this.history.forward();
|
||||||
};
|
};
|
||||||
|
|
||||||
render(): React.ReactNode {
|
render(): React.ReactNode {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user