From c7758eeba2bfd8f4409a7bd0dcc424c8eee681e0 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Mon, 15 Nov 2021 13:52:16 +0100 Subject: [PATCH] Allow projects by default --- src/client/src/components/todos/todoList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/components/todos/todoList.tsx b/src/client/src/components/todos/todoList.tsx index e773bdd..b4854f8 100644 --- a/src/client/src/components/todos/todoList.tsx +++ b/src/client/src/components/todos/todoList.tsx @@ -18,7 +18,7 @@ export const TodoList = (props: { todos: Todo[]; hideDone: boolean }) => { updateTodo={(todo) => { updateTodoState(todo.id, todo.status); }} - displayProject={false} + displayProject /> ))}