From 89f48f5e151d76f42cc16c3a5b5ff17d67a1ea68 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);