Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRomain Lebrun Thauront <romain@framasoft.org>2021-09-28 10:43:52 +0300
committerRomain Lebrun Thauront <romain@framasoft.org>2021-09-28 10:55:38 +0300
commita5bd4204cb650bf76c9ad2e5c180227e8fae00c5 (patch)
tree8e6b5fc112137a1547b6e94309b4eebb90ebee75 /src
parent364efd3057b1417209c200908c45da88e13a1131 (diff)
Fix log message on onDeletePermanently
Signed-off-by: Romain Lebrun Thauront <romain@framasoft.org>
Diffstat (limited to 'src')
-rw-r--r--src/components/AppNavigation/Trashbin.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/AppNavigation/Trashbin.vue b/src/components/AppNavigation/Trashbin.vue
index 7aecfddb..883a23d9 100644
--- a/src/components/AppNavigation/Trashbin.vue
+++ b/src/components/AppNavigation/Trashbin.vue
@@ -222,9 +222,9 @@ export default {
break
}
} catch (error) {
- logger.error('could not restore ' + item.url, { error })
+ logger.error('could not delete ' + item.url, { error })
- showError(t('tasks', 'Could not restore calendar or event'))
+ showError(t('tasks', 'Could not delete calendar or event'))
}
},
async restore(item) {