From 56997aac54f5d8aee891b509ceafbd46a1e05006 Mon Sep 17 00:00:00 2001 From: Hamza Shafique Date: Thu, 10 Oct 2024 15:02:26 +0500 Subject: [PATCH] chore: update default time from 12:00 to 00:00 --- src/components/DateTimeField/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/DateTimeField/index.jsx b/src/components/DateTimeField/index.jsx index 1215ab570..7ebcf546d 100644 --- a/src/components/DateTimeField/index.jsx +++ b/src/components/DateTimeField/index.jsx @@ -21,7 +21,7 @@ class DateTimeField extends React.Component { : getDateWithDashes(this.props.input.value), time: (this.props.utcTimeZone ? getTimeStringUTC(this.props.input.value) - : getTimeString(this.props.input.value)) || '12:00', + : getTimeString(this.props.input.value)) || '00:00', }; this.concatDateTime = this.concatDateTime.bind(this); this.updateDate = this.updateDate.bind(this); @@ -121,7 +121,7 @@ class DateTimeField extends React.Component {