We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6bdb72 commit 2fa62f4Copy full SHA for 2fa62f4
src/ui/EditTask.svelte
@@ -33,6 +33,7 @@
33
34
let descriptionInput: HTMLTextAreaElement;
35
let editableTask: EditableTask = {
36
+ // NEW_TASK_FIELD_EDIT_REQUIRED
37
description: '',
38
status: Status.TODO,
39
priority: 'none',
src/ui/EditableTask.ts
@@ -2,6 +2,7 @@ import type { Status } from '../Statuses/Status';
2
import type { Task } from '../Task/Task';
3
4
export type EditableTask = {
5
6
description: string;
7
status: Status;
8
priority: 'none' | 'lowest' | 'low' | 'medium' | 'high' | 'highest';
0 commit comments