fix: disbaled the issue property check in the issue create/edit modal (#4038)

This commit is contained in:
guru_sainath 2024-03-22 18:46:38 +05:30 committed by GitHub
parent 9652d56e49
commit b5ed602e05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,6 +49,10 @@ export const DraftIssueLayout: React.FC<DraftIssueProps> = observer((props) => {
const { captureIssueEvent } = useEventTracker();
const handleClose = () => {
if (data?.id) {
onClose(false);
setIssueDiscardModal(false);
} else {
if (changesMade) {
Object.entries(changesMade).forEach(([key, value]) => {
const issueKey = key as keyof TIssue;
@ -72,6 +76,7 @@ export const DraftIssueLayout: React.FC<DraftIssueProps> = observer((props) => {
onClose(false);
setIssueDiscardModal(false);
}
}
};
const handleCreateDraftIssue = async () => {