* Fix bug #22651,#22645.

This commit is contained in:
zhouxin
2022-05-19 05:52:24 +00:00
parent 8135aee6cd
commit 83248ea9f7
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -326,7 +326,7 @@ $config->bug->datatable->fieldList['closedDate']['required'] = 'no';
$config->bug->datatable->fieldList['lastEditedBy']['title'] = 'lastEditedBy';
$config->bug->datatable->fieldList['lastEditedBy']['fixed'] = 'no';
$config->bug->datatable->fieldList['lastEditedBy']['width'] = '80';
$config->bug->datatable->fieldList['lastEditedBy']['width'] = '90';
$config->bug->datatable->fieldList['lastEditedBy']['required'] = 'no';
$config->bug->datatable->fieldList['lastEditedDate']['title'] = 'lastEditedDateAB';
+4
View File
@@ -0,0 +1,4 @@
$(function()
{
if($('#bugList thead th.c-title').width() < 150) $('#bugList thead th.c-title').width(150);
});