From a8fd093e0b4f5983388c760cb870df2511fdb77a Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Fri, 26 Jan 2024 14:12:28 +0100 Subject: [PATCH] feat(tour): polish --- src/app/features/shepherd/shepherd-steps.const.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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(), },