* Fix bug#39528.

This commit is contained in:
chaideqing
2023-10-17 06:08:09 +00:00
parent 35e4da8c9e
commit 4ebf232065
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -129,7 +129,7 @@ if($this->app->tab == 'project') js::set('objectID', $bug->project);
<tr class='<?php if($product->shadow and isset($project) and empty($project->multiple)) echo 'hide'?>'>
<th><?php echo $lang->bug->productplan;?></th>
<td>
<span id="planIdBox"><?php echo html::select('plan', $plans, $bug->plan, "class='form-control chosen'");?></span>
<span id="planIdBox"><?php echo html::select('plan', $plans, $bug->plan, "class='form-control chosen' data-max_drop_width=100%");?></span>
</td>
</tr>
<tr>
@@ -226,7 +226,7 @@ if($this->app->tab == 'project') js::set('objectID', $bug->project);
</tr>
<tr>
<th><?php echo $lang->bug->task;?></th>
<td><div id='taskIdBox'><?php echo html::select('task', $tasks, $bug->task, "class='form-control chosen'");?></div></td>
<td><div id='taskIdBox'><?php echo html::select('task', $tasks, $bug->task, "class='form-control chosen' data-max_drop_width=100%");?></div></td>
</tr>
</tbody>
</table>