I have this control
<div class="col-lg-6"> <input type="datetime-local" name="fechahora" step="1" min="{{meta.fechaActual}}" ng-model="evento.fechaInicio"> </div>
But when I try it and select for example the next hour 01/02/2017 12:23:22
the angle model loads me the following
{"fechaInicio":"2017-03-02T16:22:23.000Z"}
Apparently, the value returns 4 hours ahead. Why does it happen?