* Adjust the ternary operator under the task module.

This commit is contained in:
lishuo
2023-05-11 15:06:25 +08:00
committed by 孔令茂
parent ff86a37c72
commit 9462d2ba3c
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -199,7 +199,7 @@ formPanel
'name' => "assignedTo",
'id' => "assignedTo",
'value' => $task->assignedTo,
'disabled' => (!empty($task->team) and $task->mode == 'linear') ? true : false,
'disabled' => !empty($task->team) && $task->mode == 'linear',
'type' => "picker",
'items' => $assignedToOptions
))),