We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db9d5d5 commit 3f1f7d3Copy full SHA for 3f1f7d3
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "click-clock",
3
- "version": "1.4.2",
+ "version": "1.4.3",
4
"private": false,
5
"main": "./out/main/index.js",
6
"scripts": {
src/renderer/src/App.svelte
@@ -161,7 +161,9 @@
161
const matchTaskTime = (report, taskTimes) => {
162
taskTimes.forEach((task) => {
163
Object.entries(task).forEach(([key, value]) => {
164
- report[key].task.timeStatus = value
+ if (report[key].task) {
165
+ report[key].task.timeStatus = value
166
+ }
167
})
168
169
0 commit comments