From 276a75f13f012dae0b45beedcb287b626ee9fdc8 Mon Sep 17 00:00:00 2001 From: zain_arif Date: Tue, 30 Jun 2026 11:57:49 +0700 Subject: [PATCH] fix(showTime): show time in datePicker --- src/pages/master/device/component/DetailDevice.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/master/device/component/DetailDevice.jsx b/src/pages/master/device/component/DetailDevice.jsx index 86db821..8c9613c 100644 --- a/src/pages/master/device/component/DetailDevice.jsx +++ b/src/pages/master/device/component/DetailDevice.jsx @@ -499,6 +499,8 @@ const DetailDevice = (props) => { current && current.isAfter(dayjs(formData.end_date), 'day') } + format="DD-MM-YYYY HH:mm" + showTime={{ format: 'HH:mm' }} style={{ flex: 1 }} /> @@ -513,6 +515,8 @@ const DetailDevice = (props) => { current && current.isBefore(dayjs(formData.start_date), 'day') } + format="DD-MM-YYYY HH:mm" + showTime={{ format: 'HH:mm' }} style={{ flex: 1 }} />