Skip to content
Snippets Groups Projects
Commit f64f7beb authored by magicfelix's avatar magicfelix
Browse files

Reformat

parent 4d311eb0
No related branches found
No related tags found
1 merge request!1304Refactor calendar overview in more different components
Pipeline #144933 passed with warnings
...@@ -362,10 +362,16 @@ export default { ...@@ -362,10 +362,16 @@ export default {
this.$apollo.queries.calendar.stopPolling(); this.$apollo.queries.calendar.stopPolling();
clearInterval(this.fetchMoreInterval); clearInterval(this.fetchMoreInterval);
this.fetchMoreCalendarEvents(this.queryVariables.start, this.queryVariables.end); this.fetchMoreCalendarEvents(
this.queryVariables.start,
this.queryVariables.end
);
this.fetchMoreInterval = setInterval(() => { this.fetchMoreInterval = setInterval(() => {
this.fetchMoreCalendarEvents(this.queryVariables.start, this.queryVariables.end); this.fetchMoreCalendarEvents(
this.queryVariables.start,
this.queryVariables.end
);
}, 30000); }, 30000);
}, },
fetch() { fetch() {
......
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