I'm having trouble to understand how dates shows as string works.
I have this from my database, it is an string: "01/10/2018 11:25:12" in "DD/MM/YYYY HH:mm:ss" format, as far as I can understand it should be in UTC, so, when I translate it to my locale (my timezone is GMT+1) that should be what I should do:
{{ myDate: date:'short':'+1'}}
should present the time in my timezone, so, 12:25:12, but it's not.
After some research I realized that for my typescript "thinks" that the timezone for my string is GMT+2.
So, my question is, how is the timezone for this string suppose to be calculated?