mirror of
https://gitlab.com/ArkHost/HelixNotes.git
synced 2026-07-24 07:45:57 +02:00
Add task management: aggregated Tasks view (list + calendar) with inline due/priority, check off, set from row, and drag-to-reschedule (#62)
This commit is contained in:
+13
-1
@@ -164,4 +164,16 @@ export type ViewMode =
|
||||
| "trash"
|
||||
| "search"
|
||||
| "quickaccess"
|
||||
| "daily";
|
||||
| "daily"
|
||||
| "tasks";
|
||||
|
||||
export interface TaskItem {
|
||||
note_path: string;
|
||||
note_title: string;
|
||||
line: number;
|
||||
raw_line: string;
|
||||
text: string;
|
||||
completed: boolean;
|
||||
due: string | null;
|
||||
priority: string | null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user