From 5cfbbf88cdef2e7f25d59f4ff371ad119199e4eb Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 20 May 2021 14:46:37 +0530 Subject: [PATCH] fix: skipping errorOnFetch check --- frontend/app/components/Errors/Error/ErrorInfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Errors/Error/ErrorInfo.js b/frontend/app/components/Errors/Error/ErrorInfo.js index c9681f25d..4726bc613 100644 --- a/frontend/app/components/Errors/Error/ErrorInfo.js +++ b/frontend/app/components/Errors/Error/ErrorInfo.js @@ -18,7 +18,7 @@ import SideSection from './SideSection'; export default class ErrorInfo extends React.PureComponent { ensureInstance() { const { errorId, loading, errorOnFetch } = this.props; - if (!loading && !errorOnFetch && + if (!loading && this.props.errorIdInStore !== errorId && errorId != null) { this.props.fetch(errorId);