From 2f63ebe66ee6d70f0d94652fea0b0117ff845ae7 Mon Sep 17 00:00:00 2001 From: Justin Reynolds Date: Tue, 24 Oct 2017 12:22:35 -0700 Subject: [PATCH] fix(core): Fix wait stage task time updating --- .../core/src/delivery/details/StageExecutionDetails.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/scripts/modules/core/src/delivery/details/StageExecutionDetails.tsx b/app/scripts/modules/core/src/delivery/details/StageExecutionDetails.tsx index 43226076c06..6fa0118c8cd 100644 --- a/app/scripts/modules/core/src/delivery/details/StageExecutionDetails.tsx +++ b/app/scripts/modules/core/src/delivery/details/StageExecutionDetails.tsx @@ -29,9 +29,7 @@ export function stageExecutionDetails(WrappedStageExecutionDetails: React.Compon } public componentWillReceiveProps(nextProps: IExecutionDetailsComponentProps): void { - if (!isEqual(nextProps.configSections, this.props.configSections)) { - this.syncDetails(nextProps); - } + this.syncDetails(nextProps); } public render() {