Skip to content
Snippets Groups Projects
Commit 5c63dd6d authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Increase calendar polling rate to 30 s

parent 40b3f172
No related branches found
No related tags found
1 merge request!1304Refactor calendar overview in more different components
......@@ -358,7 +358,7 @@ export default {
this.fetchMoreInterval = setInterval(() => {
this.fetchMoreCalendarEvents(extendedStart, extendedEnd);
}, 5000);
}, 30000);
this.fetchedDateRanges.push({ start: extendedStart, end: extendedEnd });
} else {
......@@ -366,7 +366,7 @@ export default {
this.fetchMoreInterval = setInterval(() => {
this.fetchMoreCalendarEvents(extendedStart, extendedEnd);
}, 5000);
}, 30000);
}
},
},
......
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