From 04373fbfa4d582cbaeacd1ff1efd0b8ae097f98a Mon Sep 17 00:00:00 2001 From: daitingting Date: Wed, 6 Mar 2024 01:53:34 +0000 Subject: [PATCH] * Fix bug #46613. --- 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');