chore: select start date option for issue (#1813)

This commit is contained in:
Aaryan Khandelwal 2023-08-09 15:17:32 +05:30 committed by GitHub
parent 5f1209f1db
commit 4fcd081d27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 243 additions and 30 deletions

View file

@ -28,17 +28,18 @@ import { PROJECT_ISSUES_ACTIVITY, ISSUE_DETAILS } from "constants/fetch-keys";
import { truncateText } from "helpers/string.helper";
const defaultValues = {
name: "",
assignees_list: [],
description: "",
description_html: "",
estimate_point: null,
state: "",
assignees_list: [],
priority: "low",
target_date: new Date().toString(),
issue_cycle: null,
issue_module: null,
labels_list: [],
name: "",
priority: "low",
start_date: null,
state: "",
target_date: null,
};
const IssueDetailsPage: NextPage = () => {