diff --git a/platform/features/conductor-v2/conductor/src/ui/TimeConductorController.js b/platform/features/conductor-v2/conductor/src/ui/TimeConductorController.js index 23d8d64801..7f19187d61 100644 --- a/platform/features/conductor-v2/conductor/src/ui/TimeConductorController.js +++ b/platform/features/conductor-v2/conductor/src/ui/TimeConductorController.js @@ -145,6 +145,13 @@ define( TimeConductorController.prototype.setBounds = function (bounds) { this.$scope.formModel.start = bounds.start; this.$scope.formModel.end = bounds.end; + if (!this.pendingUpdate) { + this.pendingUpdate = true; + requestAnimationFrame(function () { + this.pendingUpdate = false; + this.$scope.$digest(); + }.bind(this)); + } }; /**