diff --git a/app/javascript/submission_form/area.vue b/app/javascript/submission_form/area.vue index a282649ca..39517b335 100644 --- a/app/javascript/submission_form/area.vue +++ b/app/javascript/submission_form/area.vue @@ -212,7 +212,7 @@ export default { }, formattedDate () { if (this.field.type === 'date' && this.modelValue) { - return new Intl.DateTimeFormat([], { year: 'numeric', month: 'long', day: 'numeric' }).format(new Date(this.modelValue)) + return new Intl.DateTimeFormat([], { year: 'numeric', month: 'long', day: 'numeric', timeZone: 'UTC' }).format(new Date(this.modelValue)) } else { return '' }