From c5f70738fedfc917f88c2db95b8f47fcdebf1542 Mon Sep 17 00:00:00 2001 From: Moritz Boueke Date: Tue, 13 Aug 2024 13:15:55 +0200 Subject: [PATCH] fix(typo): correct typo in TaskActionTypes enum Change the enum value of AddNewTagsFromShortSyntax to correctly reflect element ('from' instead of 'form') No issue existing for this, discussed in #2866 --- src/app/features/tasks/store/task.actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/features/tasks/store/task.actions.ts b/src/app/features/tasks/store/task.actions.ts index 9df6037bd06..5edde0e8595 100644 --- a/src/app/features/tasks/store/task.actions.ts +++ b/src/app/features/tasks/store/task.actions.ts @@ -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(