fromDateUpperBound: Ember.computed('maxTime', 'toDate', function() {
    const toTime = this.get('toDate').getTime();
    return new Date(Math.min(toTime, this.get('maxTime')));
  }),