From 68b93fa6f27a6db347a0b1119490a75b11f31a3b Mon Sep 17 00:00:00 2001 From: daitingting Date: Thu, 7 Mar 2024 08:37:41 +0000 Subject: [PATCH] * Fix bug #46357. --- module/program/ui/create.html.php | 2 +- module/program/ui/edit.html.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/program/ui/create.html.php b/module/program/ui/create.html.php index c5ee9c245f..052d8d4c2f 100644 --- a/module/program/ui/create.html.php +++ b/module/program/ui/create.html.php @@ -21,7 +21,7 @@ jsVar('endList', $lang->project->endList); $fields = useFields('program.create'); $autoLoad = array(); -$autoLoad['parent'] = 'parent,future,budget,budgetUnit,acl,whitelist'; +$autoLoad['parent'] = 'future,budget,budgetUnit,acl,whitelist'; $handleLongTimeChange = jsCallback()->do(<<<'JS' const endPicker = $element.find('[name=end]').zui('datePicker'); diff --git a/module/program/ui/edit.html.php b/module/program/ui/edit.html.php index 4420ff449a..67e326394b 100644 --- a/module/program/ui/edit.html.php +++ b/module/program/ui/edit.html.php @@ -22,7 +22,7 @@ jsVar('endList', $lang->project->endList); $fields = useFields('program.edit'); $autoLoad = array(); -$autoLoad['parent'] = 'parent,future,budget,budgetUnit,acl,whitelist'; +$autoLoad['parent'] = 'future,budget,budgetUnit,acl,whitelist'; $handleLongTimeChange = jsCallback()->do(<<<'JS' const endPicker = $element.find('[name=end]').zui('datePicker');