From 04fa7c49894f99439e036bf8d88151154bfb46a9 Mon Sep 17 00:00:00 2001 From: Felix Edel Date: Tue, 14 Jul 2020 15:35:33 +0200 Subject: [PATCH] Fix fetching function on build result page It looks like this was never working because the function call supplied to many parameters. Fix by removing the additional and unnecessary null parameter. I would keep this change after the PF4 changes of the buildset page since it otherwise might result in some awkward behaviour due to the different tabs and their contents. Change-Id: I6fa62343a22d7a54e85a7e8d0babdabdc08b6352 --- web/src/pages/Build.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/pages/Build.jsx b/web/src/pages/Build.jsx index edf34e4326..6384eeb2d9 100644 --- a/web/src/pages/Build.jsx +++ b/web/src/pages/Build.jsx @@ -61,7 +61,6 @@ class BuildPage extends React.Component { fetchBuildIfNeeded( this.props.tenant, this.props.match.params.buildId, - null, force ) )