diff --git a/assets/scripts/app/models/extensions.coffee b/assets/scripts/app/models/extensions.coffee index 1579300c..214bedf3 100644 --- a/assets/scripts/app/models/extensions.coffee +++ b/assets/scripts/app/models/extensions.coffee @@ -7,5 +7,6 @@ Travis.DurationCalculations = Ember.Mixin.create ).property('_duration', 'finishedAt', 'startedAt') updateTimes: -> - @notifyPropertyChange '_duration' - @notifyPropertyChange 'finished_at' + if @get('stateManager.currentState.path') != 'rootState.loaded.reloading' + @notifyPropertyChange '_duration' + @notifyPropertyChange 'finished_at'