From 9a366ee5031a477519e3a7e35a530351d579eb39 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Mon, 15 Nov 2021 17:03:12 +0100 Subject: [PATCH] Make project smaller --- src/client/src/components/todos/todoItem.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/src/components/todos/todoItem.tsx b/src/client/src/components/todos/todoItem.tsx index aa9eac4..c445e6e 100644 --- a/src/client/src/components/todos/todoItem.tsx +++ b/src/client/src/components/todos/todoItem.tsx @@ -12,10 +12,10 @@ export const TodoItem: FC = (props) => (
-
+
{props.todo.title}
{props.displayProject && props.todo.project && ( -
+
{props.todo.project}
)}