* Opens the task edit modal for a specific task
(task: TaskInfo, onTaskUpdated?: (task: TaskInfo) => void)
| 1335 | * Opens the task edit modal for a specific task |
| 1336 | */ |
| 1337 | async openTaskEditModal(task: TaskInfo, onTaskUpdated?: (task: TaskInfo) => void) { |
| 1338 | // With native cache, task data is always current - no need to refetch |
| 1339 | new TaskEditModal(this.app, this, { task, onTaskUpdated }).open(); |
| 1340 | } |
| 1341 | |
| 1342 | /** |
| 1343 | * Opens a date/time picker modal for the given task date field. |
no test coverage detected