mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-07-03 20:03:01 +08:00
refactor(todo): update TodoListContentProps to include optional id and priority fields that are used in TodoList.jsx
This commit is contained in:
@@ -3,9 +3,10 @@ import TodoList from '../../../../TodoList';
|
|||||||
|
|
||||||
interface TodoListContentProps {
|
interface TodoListContentProps {
|
||||||
todos: Array<{
|
todos: Array<{
|
||||||
|
id?: string;
|
||||||
content: string;
|
content: string;
|
||||||
status: string;
|
status: string;
|
||||||
activeForm?: string;
|
priority?: string;
|
||||||
}>;
|
}>;
|
||||||
isResult?: boolean;
|
isResult?: boolean;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user