From 4090b1377237367f064c8580e51f7171ff631409 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni <6173598+dpschen@users.noreply.github.com> Date: Tue, 1 Jul 2025 21:00:01 +0200 Subject: [PATCH] fix: remove second notification on undo task update (#1060) fix: remove undo success toast --- frontend/src/components/tasks/partials/SingleTaskInProject.vue | 1 - frontend/src/i18n/lang/en.json | 1 - 2 files changed, 2 deletions(-) diff --git a/frontend/src/components/tasks/partials/SingleTaskInProject.vue b/frontend/src/components/tasks/partials/SingleTaskInProject.vue index 47f430b80..4f514f527 100644 --- a/frontend/src/components/tasks/partials/SingleTaskInProject.vue +++ b/frontend/src/components/tasks/partials/SingleTaskInProject.vue @@ -308,7 +308,6 @@ async function markAsDone(checked: boolean, wasReverted: boolean = false) { updateDueDate() if (wasReverted) { - success({message: t('task.revertSuccess')}) return } diff --git a/frontend/src/i18n/lang/en.json b/frontend/src/i18n/lang/en.json index 4285b1533..cb68bed80 100644 --- a/frontend/src/i18n/lang/en.json +++ b/frontend/src/i18n/lang/en.json @@ -752,7 +752,6 @@ "addReminder": "Add a reminder…", "doneSuccess": "The task was successfully marked as done.", "undoneSuccess": "The task was successfully un-marked as done.", - "revertSuccess": "The task change was successfully undone.", "undo": "Undo", "openDetail": "Open task detail view", "checklistTotal": "{checked} of {total} tasks",