From 56ec331be4d235009e131c0fd59bad80bced3876 Mon Sep 17 00:00:00 2001 From: liugang Date: Wed, 17 Jan 2024 09:17:02 +0800 Subject: [PATCH] * bugUI: call data function to get variable's value. --- module/bug/ui/common.field.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/ui/common.field.php b/module/bug/ui/common.field.php index 90aa56093a..eee2a2c7e2 100644 --- a/module/bug/ui/common.field.php +++ b/module/bug/ui/common.field.php @@ -32,7 +32,7 @@ $fields->field('assignedTo') $fields->field('deadline') ->control('datePicker'); -if(isset($executionType) and $executionType == 'kanban') +if(data('executionType') && data('executionType') == 'kanban') { $fields->field('region') ->label($lang->kanbancard->region)