diff --git a/aleksis/core/frontend/components/holiday/HolidayInlineList.vue b/aleksis/core/frontend/components/holiday/HolidayInlineList.vue
index 72c373a797d99f05322aa75cb22411366808a711..3dcdc5014bc369418ef33b463fe95a8522045e7d 100644
--- a/aleksis/core/frontend/components/holiday/HolidayInlineList.vue
+++ b/aleksis/core/frontend/components/holiday/HolidayInlineList.vue
@@ -103,21 +103,15 @@ export default {
   },
   methods: {
     updateEndDate(newStartDate, item, isCreate) {
-      console.log("method called", item);
       let start = new Date(newStartDate);
-      console.log(start);
       if (!item.endDate) {
         if (isCreate) {
           this.$refs.crudList.createModel.dateEnd = newStartDate;
-          console.log("Changed of createmodel");
         } else {
           this.$refs.crudList.editableItems.find(
             (holiday) => holiday.id === item.id
           )[0].dateEnd = newStartDate;
-          console.log("Changed of editableitems");
         }
-      } else {
-        console.log(item, newStartDate);
       }
     },
   },