gitshark

Clone repository

git clone https://git.vilip.de/git/vilip/taskflow.git
git clone git@git.vilip.de:vilip/taskflow.git

← Commits

๐Ÿ› Fix project bug

bf0f7898f73218333539e6ab02f88261fb501e67 ยท vvilip ยท 2025-11-04T16:31:57Z

Changes

1 file changed, +3 -4

MODIFY services/task.service.ts +3 -4
diff --git a/services/task.service.ts b/services/task.service.ts
index b673242..84d2f17 100644
--- a/services/task.service.ts
+++ b/services/task.service.ts
@@ -32,8 +32,7 @@
32 32 return tasks.filter(task =>
33 33 task.status === 'inbox' &&
34 34 !task.completed &&
35 - !task.dueDate &&
36 - !task.projectId
35 + !task.dueDate
37 36 );
38 37 }
39 38
@@ -161,9 +160,9 @@
161 160 updatedAt: Date.now(),
162 161 };
163 162
164 - // Auto-move out of inbox when task gets processed
163 + // Auto-move out of inbox only when task gets a due date or status change
165 164 if (currentTask.status === 'inbox') {
166 - if (updates.dueDate || updates.projectId || (updates.status && updates.status !== 'inbox')) {
165 + if (updates.dueDate || (updates.status && updates.status !== 'inbox')) {
167 166 updatedTask.status = updates.status || 'next';
168 167 }
169 168 }

Keyboard shortcuts

?Show this help
g hGo home
EscClose dialog