@hasna/todos 0.11.26 → 0.11.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -35681,7 +35681,7 @@ program2.command("mine").description("Show tasks assigned to you, grouped by sta
|
|
|
35681
35681
|
const globalOpts = program2.opts();
|
|
35682
35682
|
const db = getDatabase();
|
|
35683
35683
|
const { listTasks: listTasks2 } = (init_tasks(), __toCommonJS(exports_tasks));
|
|
35684
|
-
const projectId = autoProject(globalOpts) || undefined;
|
|
35684
|
+
const projectId = globalOpts.project ? autoProject(globalOpts) || undefined : undefined;
|
|
35685
35685
|
const filter = { assigned_to: agent };
|
|
35686
35686
|
if (projectId)
|
|
35687
35687
|
filter.project_id = projectId;
|