(task: TaskInfo)
| 2856 | } |
| 2857 | |
| 2858 | private buildTaskSignature(task: TaskInfo): string { |
| 2859 | // Fast signature using only fields that affect rendering |
| 2860 | return `${task.path}|${task.title}|${task.status}|${task.priority}|${task.due}|${task.scheduled}|${task.recurrence}|${task.archived}|${task.sortOrder}|${task.complete_instances?.join(",")}|${task.reminders?.length}|${task.blocking?.length}|${task.blockedBy?.length}`; |
| 2861 | } |
| 2862 | |
| 2863 | private buildCardRenderSignature( |
| 2864 | visibleProperties: string[] | undefined, |
no outgoing calls
no test coverage detected