* Fix bug #45382, if the project is longTime, set the endDate to empty.

This commit is contained in:
liumengyi
2024-02-19 11:27:44 +08:00
parent 2755ea70a2
commit 1f79a3fed4
+1 -1
View File
@@ -98,7 +98,7 @@ formPanel
(
set::name('end'),
set('id', 'end'),
set::value($project->end),
set::value($project->end != LONG_TIME ? $project->end : ''),
set::placeholder($lang->project->end),
set::required(true),
set::disabled($project->end == LONG_TIME)