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 d904d49 commit 982c2ff
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 982c2ff

Please sign in to comment.