Unable to se parentId on createIssueModal

Hello,
I’m trying to open the jira issue create screen and pre-fill the parent field
I’m using the createIssueModal
I manage to set the issue type, project, summary etc. but it seems like the parent field is not set
any idea?
this is my code:

import { CreateIssueModal } from '@forge/jira-bridge';

const createIssueModal = new CreateIssueModal({
  onClose: (payload) => {
    console.log('CreateIssueModal is closed with', payload);
  },
  context:{
    "projectId": "10037",
    "issueTypeId": "10004",
    "parentId": "10592",
    "summary": "test"
},
});

createIssueModal.open();

thanks,
Dar

Me too. Maybe the problem is the new Parent field that replace the EpicLink field. I’ll try to investigate.

Same problem here, can someone advise how to set the parentId in CreateIssueModal ?