Skip to content

Commit

Permalink
feat(tour): polish
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesjo committed Jan 26, 2024
1 parent 6f729f8 commit a8fd093
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/features/shepherd/shepherd-steps.const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ export const SHEPHERD_STEPS = (
id: 'XXX',
title: 'Moving around',
// eslint-disable-next-line max-len
text: `<p>When a task was focused in the first place you can navigate to other tasks by pressing he arrow keys <kbd>↑</kbd> and <kbd>↓</kbd>.</p>`,
text: `<p>When a task is focused you can navigate to other tasks by pressing the arrow keys <kbd>↑</kbd> and <kbd>↓</kbd>.</p>`,
when: {
show: () => taskService.focusFirstTaskIfVisible(),
},
Expand All @@ -562,7 +562,9 @@ export const SHEPHERD_STEPS = (
},
{
title: 'Edit Task Title',
text: `You can edit the task by pressing the <kbd>Enter</kbd> key.`,
text: `You can edit the task by pressing the <kbd>Enter</kbd> or the configured ${KEY_COMBO(
'taskEditTitle',
)}key.`,
when: {
show: () => taskService.focusFirstTaskIfVisible(),
},
Expand Down

0 comments on commit a8fd093

Please sign in to comment.