diff --git a/web/core/components/project-states/create-update/form.tsx b/web/core/components/project-states/create-update/form.tsx index 14c2dc0b771..105fb984f49 100644 --- a/web/core/components/project-states/create-update/form.tsx +++ b/web/core/components/project-states/create-update/form.tsx @@ -3,7 +3,7 @@ import { FormEvent, FC, useEffect, useState, useMemo } from "react"; import { TwitterPicker } from "react-color"; import { IState } from "@plane/types"; -import { Button, Popover, Input } from "@plane/ui"; +import { Button, Popover, Input, TextArea } from "@plane/ui"; type TStateForm = { data: Partial; @@ -59,47 +59,49 @@ export const StateForm: FC = (props) => { ); return ( -
+ {/* color */} -
+
handleFormData("color", value.hex)} />
- {/* title */} - handleFormData("name", e.target.value)} - hasError={(errors && Boolean(errors.name)) || false} - className="w-full" - maxLength={100} - autoFocus - /> - - {/* description */} - handleFormData("description", e.target.value)} - hasError={(errors && Boolean(errors.description)) || false} - className="w-full" - /> +
+ {/* title */} + handleFormData("name", e.target.value)} + hasError={(errors && Boolean(errors.name)) || false} + className="w-full" + maxLength={100} + autoFocus + /> - + {/* description */} +