mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-17 10:27:19 +02:00
fix(editor): Add optional chaining to execution socket event (no-changelog) (#11499)
This commit is contained in:
@@ -252,7 +252,7 @@ export function usePushConnection({ router }: { router: ReturnType<typeof useRou
|
||||
if (activeRunData) {
|
||||
for (const key of Object.keys(activeRunData)) {
|
||||
if (
|
||||
pushData.data.data.resultData.runData[key]?.[0]?.data?.main?.[0]?.[0]?.json
|
||||
pushData.data?.data?.resultData?.runData?.[key]?.[0]?.data?.main?.[0]?.[0]?.json
|
||||
?.isArtificialRecoveredEventItem === true &&
|
||||
activeRunData[key].length > 0
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user