({id, props})
| 182 | } |
| 183 | |
| 184 | export function notifyObservers({id, props}) { |
| 185 | return async function (dispatch, getState) { |
| 186 | const {graphs, paths} = getState(); |
| 187 | dispatch( |
| 188 | addRequestedCallbacks(includeObservers(id, props, graphs, paths)) |
| 189 | ); |
| 190 | }; |
| 191 | } |
| 192 | |
| 193 | export function handleAsyncError(err, message, dispatch) { |
| 194 | // Handle html error responses |
no test coverage detected
searching dependent graphs…