Skip to content
Snippets Groups Projects
Verified Commit 991f32b5 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Remove debug prints

parent 237b6384
No related branches found
No related tags found
1 merge request!1304Refactor calendar overview in more different components
......@@ -117,7 +117,6 @@ export default {
cf.events.map((event) => {
const start = this.$parseISODate(event.start);
const end = this.$parseISODate(event.end);
console.log(event.start, start, start.toJSDate());
return {
...event,
category: cf.verboseName,
......@@ -273,7 +272,6 @@ export default {
nativeEvent.stopPropagation();
},
detailComponentForFeed(feedName) {
console.log(this.calendar, feedName, calendarFeedDetailComponents);
if (
this.calendar.calendarFeeds &&
feedName &&
......
......@@ -222,7 +222,6 @@ AleksisVue.install = function (Vue) {
};
Vue.prototype.$d = function (value, ...args) {
console.log("I AM $D", value, typeof value);
if (typeof value === DateTime) {
value = value.toJSDate();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment