Skip to content
Snippets Groups Projects
Commit b47b0f9e authored by Max Kuzmych's avatar Max Kuzmych
Browse files

Issue #3352277: Change interval for data change to 1 minute

parent 93e8ac0a
No related branches found
No related tags found
1 merge request!10Issue #3352277: [DS-501] When today's date matches a holiday, reflect that
......@@ -66,7 +66,7 @@
// This will ensure that if people leave the tab open or the page comes back
// into memory on a phone the hour will always be correct.
this.refreshTimer = setInterval(this.updateTodayHours, 5 * 1000);
this.refreshTimer = setInterval(this.updateTodayHours, 60 * 1000);
// Run for the first time.
this.updateTodayHours();
......
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