From cb471ce761c6e51e30d1ef866214abcafafcb74b Mon Sep 17 00:00:00 2001 From: sunguangming Date: Thu, 15 May 2025 05:57:31 +0000 Subject: [PATCH] * [misc] add width to fields. --- module/programplan/ui/create.html.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/module/programplan/ui/create.html.php b/module/programplan/ui/create.html.php index b39d09717f..9461358ddf 100644 --- a/module/programplan/ui/create.html.php +++ b/module/programplan/ui/create.html.php @@ -169,6 +169,9 @@ $fnGenerateFields = function() use ($lang, $requiredFields, $showFields, $fields ); } + if($name == 'name') $field['width'] = '240px'; + if(!isset($field['width'])) $field['width'] = '120px'; + $items[] = $field; }