From 5066d98ec963cde50f09b27acb5321e1dc381697 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Thu, 8 Feb 2024 20:56:46 -0300 Subject: [PATCH] frontend: update DEFAULT_TASK_CONTENT --- twenty-frontend/src/js/components/Task.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/twenty-frontend/src/js/components/Task.tsx b/twenty-frontend/src/js/components/Task.tsx index 8b037ee..58c55dd 100644 --- a/twenty-frontend/src/js/components/Task.tsx +++ b/twenty-frontend/src/js/components/Task.tsx @@ -11,15 +11,16 @@ import { NavBar } from "~/components/NavBar"; import { Tabs, Tab } from "~/components/Tabs"; const DEFAULT_TASK_CONTENT = [ - "## Subtasks", - "", - "* [] Task 1", - "* [] Task 2", - "* [] ...", - "", "## Description", "", - "Add a description here....", + "An example description", + "", + "## Checklist", + "", + "* [] item one", + "* [] item two", + "* [] ...", + "", ].join("\n"); export function Task() {