Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions packages/react-sdk-components/src/bridge/react_pconnect.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,17 @@ const connectRedux = (component, c11nEnv) => {
}
}
}

// For CaseSummary, we need to compare changes in
// primary Fields and secondary Fields
if (next.template === 'CaseSummary') {
for (const key of Object.keys(prev)) {
if (!PCore.isDeepEqual(next[key], prev[key])) {
return false;
}
}
}

/* TODO For some rawConfig we are not getting routingInfo under allStateProps */
return !routingInfoCompare(next, prev);
}
Expand Down
Loading