diff --git a/src/app/features/shepherd/shepherd-steps.const.ts b/src/app/features/shepherd/shepherd-steps.const.ts index ef04418a07b..f6edf1f44c3 100644 --- a/src/app/features/shepherd/shepherd-steps.const.ts +++ b/src/app/features/shepherd/shepherd-steps.const.ts @@ -544,7 +544,7 @@ export const SHEPHERD_STEPS = ( id: 'XXX', title: 'Moving around', // eslint-disable-next-line max-len - text: `

When a task was focused in the first place you can navigate to other tasks by pressing he arrow keys and .

`, + text: `

When a task is focused you can navigate to other tasks by pressing the arrow keys and .

`, when: { show: () => taskService.focusFirstTaskIfVisible(), }, @@ -562,7 +562,9 @@ export const SHEPHERD_STEPS = ( }, { title: 'Edit Task Title', - text: `You can edit the task by pressing the Enter key.`, + text: `You can edit the task by pressing the Enter or the configured ${KEY_COMBO( + 'taskEditTitle', + )}key.`, when: { show: () => taskService.focusFirstTaskIfVisible(), },