diff --git a/src/components/Tutorial.vue b/src/components/Tutorial.vue index 1da10c5c7..44faac47e 100644 --- a/src/components/Tutorial.vue +++ b/src/components/Tutorial.vue @@ -359,7 +359,9 @@ const setVehicleConnectedVisible = (): void => { } const handleKeydown = (event: KeyboardEvent): void => { - if (event.key === 'Enter' && showTutorial.value) { + if (event.shiftKey && event.key === 'Enter' && showTutorial.value) { + backTutorialStep() + } else if (event.key === 'Enter' && showTutorial.value) { nextTutorialStep() } }