mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
[RANTS-65] fix: undefined work item sequence in bulk delete work item modal (#6797)
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user