mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 17:00:13 +01:00
Fix "can't set timers inside simulations error" when moving cards with start/due dates.
This commit is contained in:
parent
6064393ad3
commit
33b74a465e
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ const CardDate = BlazeComponent.extendComponent({
|
||||||
const self = this;
|
const self = this;
|
||||||
self.date = ReactiveVar();
|
self.date = ReactiveVar();
|
||||||
self.now = ReactiveVar(moment());
|
self.now = ReactiveVar(moment());
|
||||||
Meteor.setInterval(() => {
|
window.setInterval(() => {
|
||||||
self.now.set(moment());
|
self.now.set(moment());
|
||||||
}, 60000);
|
}, 60000);
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue