From 1f060bf4259e756f54f438b6a2590e941e644e6b Mon Sep 17 00:00:00 2001 From: Piotr Czarnas Date: Mon, 28 Oct 2024 23:12:37 +0100 Subject: [PATCH] Some null errors in the frontend in the job notification panel. --- dqops/src/main/frontend/src/redux/reducers/job.reducer.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/dqops/src/main/frontend/src/redux/reducers/job.reducer.ts b/dqops/src/main/frontend/src/redux/reducers/job.reducer.ts index a974fedd09..e756831a99 100644 --- a/dqops/src/main/frontend/src/redux/reducers/job.reducer.ts +++ b/dqops/src/main/frontend/src/redux/reducers/job.reducer.ts @@ -276,6 +276,7 @@ const schemaReducer = (state = initialState, action: any) => { if (lastRefreshExceeded) { Object.keys(job_dictionary_state).forEach((key) => { if ( + job_dictionary_state[key]?.statusChangedAt && nowDate.diff(job_dictionary_state[key].statusChangedAt, 'minutes') > 30 ) {