diff options
author | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-06 13:47:30 -0400 |
---|---|---|
committer | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-06 13:47:30 -0400 |
commit | d62464eef384e317c0a08334930ca491085ff253 (patch) | |
tree | 92922b6bfc236ce3db6d7bcb05edf31368421589 /src/client/documents/Documents.ts | |
parent | 8c4734a1220fa58a2d8ffdce802568759002604a (diff) |
added bi directional syncing for task editing (based on most recent edit). Modified button to reflect bi-directionality of syncing
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 27cb95144..a29e7a9f5 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -529,6 +529,7 @@ export class DocumentOptions { $task_allDay?: BoolInfo | boolean = new BoolInfo('whether task is all-day or not', /*filterable*/ false); $task_completed?: BoolInfo | boolean = new BoolInfo('whether the task is completed', /*filterable*/ false); $googleTaskId?: STRt = new StrInfo('Google Task ID for syncing'); + $task_lastSyncedAt?: STRt = new StrInfo('last update time for task node'); _calendar_date?: DateInfo | DateField = new DateInfo('current selected date of a calendar', /*filterable*/ false); _calendar_dateRange?: STRt = new StrInfo('date range shown on a calendar', false); |