()
| 151 | } |
| 152 | |
| 153 | private getTaskContextInfo(): string | null { |
| 154 | const parts: string[] = []; |
| 155 | |
| 156 | if (this.task.due) { |
| 157 | parts.push(`Due: ${formatDateForDisplay(this.task.due)}`); |
| 158 | } |
| 159 | |
| 160 | if (this.task.scheduled) { |
| 161 | parts.push(`Scheduled: ${formatDateForDisplay(this.task.scheduled)}`); |
| 162 | } |
| 163 | |
| 164 | return parts.length > 0 ? parts.join(" • ") : null; |
| 165 | } |
| 166 | |
| 167 | private setupKeyboardHandlers(): void { |
| 168 | const handleKeydown = (e: KeyboardEvent) => { |
no test coverage detected