Browse Source

Fix error;

feature/notes
stingl 4 years ago
parent
commit
a7154a9a15
  1. 4
      js/app.js

4
js/app.js

@ -730,6 +730,10 @@ const TimeTrack = {
this.updateStorage(); this.updateStorage();
}, },
getOpenTasksForTracker(tasks) { getOpenTasksForTracker(tasks) {
if (!tasks) {
return 0;
}
let counter = 0; let counter = 0;
tasks.forEach((task) => { tasks.forEach((task) => {