My application server is in a different timezone than my browser. I am using Angular date filter to show date in given format. From backend it is coming as 'yyyy-MM-dd' I want it to just show in 'MM-dd-yyyy HH:mm:ss'. But Angular is converting it to local time zone and hence date is changed.
Code:
{{transDateTime | date:'MM-dd-yyyy HH:mm:ss'}}
Is there any way to stop it to make any timezone conversion and show the date as is.