diff --git a/src/components/TheList.vue b/src/components/TheList.vue
index 0f8156d7..d6883214 100644
--- a/src/components/TheList.vue
+++ b/src/components/TheList.vue
@@ -84,7 +84,7 @@ License along with this library. If not, see .
{{ t('tasks', 'Download') }}
-
+
@@ -221,7 +221,8 @@ export default {
),
methods: Object.assign(
mapActions([
- 'changeCalendar'
+ 'changeCalendar',
+ 'deleteCalendar'
]),
{
hideCollection: function(collection) {
@@ -324,9 +325,6 @@ export default {
},
deleteMessage: function(name) {
return t('tasks', 'This will delete the calendar "%s" and all corresponding events and tasks.').replace('%s', name)
- },
- deleteCalendar: function(calendar) {
- console.log('Delete calendar ' + calendar.id)
}
}
)