[RANTS-65] fix: undefined work item sequence in bulk delete work item modal (#6797)
This commit is contained in:
parent
962923ff4f
commit
0d069bf46e
1 changed files with 7 additions and 1 deletions
|
|
@ -34,7 +34,13 @@ export const BulkDeleteIssuesModalItem: React.FC<Props> = observer((props: Props
|
|||
backgroundColor: color,
|
||||
}}
|
||||
/>
|
||||
<IssueIdentifier issueId={issue.id} projectId={issue.project_id} textContainerClassName="text-xs" />
|
||||
<IssueIdentifier
|
||||
projectId={issue.project_id}
|
||||
issueTypeId={issue.type_id}
|
||||
projectIdentifier={issue.project__identifier}
|
||||
issueSequenceId={issue.sequence_id}
|
||||
textContainerClassName="text-xs"
|
||||
/>
|
||||
<span>{issue.name}</span>
|
||||
</div>
|
||||
</Combobox.Option>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue