forked from github/plane
fix: resolved issue with resetting the draft issue form (#3532)
This commit is contained in:
parent
4e600e4e9b
commit
d68669df51
@ -170,17 +170,6 @@ export const DraftIssueForm: FC<IssueFormProps> = observer((props) => {
|
|||||||
// handleClose();
|
// handleClose();
|
||||||
// };
|
// };
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!isOpen || data) return;
|
|
||||||
|
|
||||||
setLocalStorageValue(
|
|
||||||
JSON.stringify({
|
|
||||||
...payload,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
||||||
}, [JSON.stringify(payload), isOpen, data]);
|
|
||||||
|
|
||||||
// const onClose = () => {
|
// const onClose = () => {
|
||||||
// handleClose();
|
// handleClose();
|
||||||
// };
|
// };
|
||||||
@ -256,14 +245,6 @@ export const DraftIssueForm: FC<IssueFormProps> = observer((props) => {
|
|||||||
.finally(() => setIAmFeelingLucky(false));
|
.finally(() => setIAmFeelingLucky(false));
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
reset({
|
|
||||||
...defaultValues,
|
|
||||||
...(prePopulatedData ?? {}),
|
|
||||||
...(data ?? {}),
|
|
||||||
});
|
|
||||||
}, [prePopulatedData, reset, data]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setFocus("name");
|
setFocus("name");
|
||||||
}, [setFocus]);
|
}, [setFocus]);
|
||||||
|
Loading…
Reference in New Issue
Block a user