Skip to content

Commit

Permalink
Deploy latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
egon-development committed Apr 4, 2024
1 parent e9addfa commit 94d0ab4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10591,12 +10591,12 @@ class AppComponent {
e.stopPropagation();
document.getElementById('import')?.click();
}
if (e.key === 'ArrowRight' && this.replayStateService.getReplayOn()) {
if ((e.key === 'ArrowRight' || e.key === 'ArrowUp') && this.replayStateService.getReplayOn()) {
e.preventDefault();
e.stopPropagation();
replayService.nextStep();
}
if (e.key === 'ArrowLeft' && this.replayStateService.getReplayOn()) {
if ((e.key === 'ArrowLeft' || e.key === 'ArrowDown') && this.replayStateService.getReplayOn()) {
e.preventDefault();
e.stopPropagation();
replayService.previousStep();
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/main.js.map

Large diffs are not rendered by default.

0 comments on commit 94d0ab4

Please sign in to comment.