Skip to content

Commit

Permalink
EPMRPP-96967 || Cannot read properties of undefined (reading 'autoAna…
Browse files Browse the repository at this point in the history
…lyzed')
  • Loading branch information
maria-hambardzumian committed Nov 29, 2024
1 parent 0519fd1 commit 8aa995e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ const MakeDecision = ({ data }) => {
suggestChoice: {},
historyChoice: historyItems.find(
(item) =>
item.id !== itemData.id && !item.issue?.issueType.startsWith(TO_INVESTIGATE_LOCATOR_PREFIX),
item.id !== itemData.id &&
item.issue &&
!item.issue.issueType.startsWith(TO_INVESTIGATE_LOCATOR_PREFIX),
),
commentOption: isBulkOperation ? NOT_CHANGED_FOR_ALL : REPLACE_FOR_ALL,
extraAnalyticsParams: {
Expand Down

0 comments on commit 8aa995e

Please sign in to comment.