Skip to content

Commit

Permalink
fix: changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Sep 7, 2023
1 parent faadf88 commit 3fb6c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/functionUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ const stagingDetailsViewLinkInfo = (info, dataType, changeColor) => {
};

export const detailsViewData = (type, detailData, dataType, changeColor) => {
if (detailData[dataType].changes[0] === null) {
if (detailData[dataType]?.changes[0] === null) {
return <Body>{'---'}</Body>;
}

Expand Down

0 comments on commit 3fb6c47

Please sign in to comment.