()
| 976 | } |
| 977 | |
| 978 | protected getActionMenuState(): TaskModalActionMenuState { |
| 979 | return createTaskModalActionMenuState({ |
| 980 | title: this.title, |
| 981 | status: this.status, |
| 982 | priority: this.priority, |
| 983 | dueDate: this.dueDate, |
| 984 | scheduledDate: this.scheduledDate, |
| 985 | recurrenceRule: this.recurrenceRule, |
| 986 | recurrenceAnchor: this.recurrenceAnchor, |
| 987 | reminders: this.reminders, |
| 988 | }); |
| 989 | } |
| 990 | |
| 991 | protected getActionMenuContext(): TaskModalActionMenuContext { |
| 992 | return createTaskModalActionMenuContext({ |
nothing calls this directly
no test coverage detected