Go to a future time range with the arrow shortcut next to the zoom out

The LEFT ARROW and RIGHT ARROW next to the zoom out button:
59e82298-c2c1-11e6-82a3-b9fb756b71cc

work great for shifting the time period of graphs when the graph is in the past, however if I try to advance beyond the present day using these ARROW , then it only advances time by a second which is a bit annoying if my data spans months and I’m trying to flick through future forecasts.

50270828-24dfca00-0433-11e9-9f81-37b79b45cf77

I think it is at the line 123 in the file TimePicker.tsx but I am not sure:

       if (nextTo > Date.now() && to < Date.now()) {
            nextTo = Date.now();
            nextFrom = from.valueOf();
      }

Why this condition and why put to now a future time if the from date is in the past?

Thank you