From 50b22dd265c2649cdfb63684adeca117acbde69a Mon Sep 17 00:00:00 2001 From: proddy Date: Wed, 2 Oct 2024 13:55:34 +0200 Subject: [PATCH] fix condition after adding a time --- interface/src/app/main/SchedulerDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/app/main/SchedulerDialog.tsx b/interface/src/app/main/SchedulerDialog.tsx index 79f039080..b29789e4c 100644 --- a/interface/src/app/main/SchedulerDialog.tsx +++ b/interface/src/app/main/SchedulerDialog.tsx @@ -316,7 +316,7 @@ const SchedulerDialog = ({ } multiline fullWidth - value={editItem.time === '00:00'} + value={editItem.time === '00:00' ? '' : editItem.time} margin="normal" onChange={updateFormValue} />