Skip to content

Commit

Permalink
Merge pull request AutomaApp#1362 from Siykt/fix/undo-redo-not-working
Browse files Browse the repository at this point in the history
[Fix] resolved the issue of undo/redo not working
  • Loading branch information
Kholid060 authored Sep 13, 2023
2 parents 326c78c + 62fe84b commit f55be7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/newtab/pages/workflows/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -1483,7 +1483,7 @@ function onKeydown({ ctrlKey, metaKey, shiftKey, key, target, repeat }) {
} else if (command('v')) {
pasteCopiedElements();
} else if (command('z')) {
undoRedoCommand(shiftKey ? 'redo' : 'undo');
undoRedoCommand(shiftKey ? 'redo' : 'undo', { target });
}
}
async function fetchConnectedTable() {
Expand Down

0 comments on commit f55be7a

Please sign in to comment.