Merge branch 'mayue_fix_bug#19933#21785' into 'master'

* Fix bug #19933#21785.

See merge request easycorp/zentaopms!3064
This commit is contained in:
孙广明
2022-04-21 08:32:51 +00:00
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -341,7 +341,7 @@ function loadExecutionRelated(executionID)
loadExecutionTasks(executionID);
loadExecutionStories(executionID);
loadExecutionBuilds(executionID);
loadAssignedTo(executionID);
loadAssignedTo(executionID, $('#assignedTo').val());
loadTestTasks($('#product').val(), executionID);
}
else
+6 -1
View File
@@ -145,7 +145,12 @@ if($this->app->tab == 'project') js::set('objectID', $bug->project);
</tr>
<tr>
<th><?php echo $lang->bug->assignedTo;?></th>
<td><?php echo html::select('assignedTo', $users, $bug->assignedTo, "class='form-control chosen'");?></td>
<td>
<div class='input-group'>
<?php echo html::select('assignedTo', $users, $bug->assignedTo, "class='form-control chosen'");?>
<span class='input-group-btn'><?php echo html::commonButton($lang->bug->allUsers, "class='btn btn-default' onclick='loadAllUsers()' data-toggle='tooltip'");?></span>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->bug->deadline;?></th>