chore: select start date option for issue (#1813)
This commit is contained in:
parent
5f1209f1db
commit
4fcd081d27
16 changed files with 243 additions and 30 deletions
|
|
@ -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 = () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue