feat: sub-issues, fix: loading screen after sign out

This commit is contained in:
Aaryan Khandelwal 2022-12-02 19:42:58 +05:30
parent 2acada35e2
commit 3e5e1ab403
7 changed files with 552 additions and 81 deletions

View file

@ -262,7 +262,7 @@ const IssueDetailSidebar: React.FC<Props> = ({ control, submitChanges, issueDeta
render={({ field: { value, onChange } }) => (
<input
type="date"
value={value ?? new Date().toString()}
value={""}
onChange={(e: any) => {
submitChanges({ target_date: e.target.value });
onChange(e.target.value);