Skip to content

Commit

Permalink
fix(typo): correct typo in TaskActionTypes enum
Browse files Browse the repository at this point in the history
Change the enum value of AddNewTagsFromShortSyntax to correctly reflect
element ('from' instead of 'form')

No issue existing for this, discussed in johannesjo#2866
  • Loading branch information
Moritz Boueke authored and MiragonMx committed Aug 14, 2024
1 parent 5d67655 commit c5f7073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/features/tasks/store/task.actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ enum TaskActionTypes {
'MoveToOtherProject' = '[Task] Move tasks to other project',
'ToggleStart' = '[Task] Toggle start',
'RoundTimeSpentForDay' = '[Task] RoundTimeSpentForDay',
'AddNewTagsFromShortSyntax' = '[Task] Add new tags form short syntax',
'AddNewTagsFromShortSyntax' = '[Task] Add new tags from short syntax',
}

export const setCurrentTask = createAction(
Expand Down

0 comments on commit c5f7073

Please sign in to comment.