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') (#4113)
  • Loading branch information
maria-hambardzumian authored Nov 29, 2024
1 parent 8b04324 commit 0519fd1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,9 @@ const MakeDecision = ({ data }) => {
const getMakeDecisionTabs = () => {
const preparedHistoryLineItems = historyItems.filter(
(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),
);

const tabsData = [
Expand Down

0 comments on commit 0519fd1

Please sign in to comment.