Rename status code string for To-do List NEEDS-ACTION status (#18373)

This commit is contained in:
Allen Porter 2023-10-24 03:07:36 -07:00 committed by GitHub
parent eb4afedf2e
commit c9f5d16745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ export interface TodoList {
}
export const enum TodoItemStatus {
NeedsAction = "needs-action",
NeedsAction = "needs_action",
Completed = "completed",
}