From 5ba4f3efe0cbc69d1687b853edb15be75141d08c Mon Sep 17 00:00:00 2001 From: liuhong Date: Tue, 9 Aug 2022 09:05:01 +0000 Subject: [PATCH 1/4] *Finish task #63783. --- module/testcase/css/browse.css | 1 + 1 file changed, 1 insertion(+) diff --git a/module/testcase/css/browse.css b/module/testcase/css/browse.css index 8b43d91f06..0ed94fd1f8 100644 --- a/module/testcase/css/browse.css +++ b/module/testcase/css/browse.css @@ -27,3 +27,4 @@ tbody > tr > td .icon-share {font-size: 9px;} #importToLib .select-lib {width: 100px; text-align: right;} #subHeader #currentBranch + #dropMenu .col-left {padding-bottom: 30px;} +th.c-lastEditedBy {width: 92px !important;} From f763f35484d755b2ce41cab3aa845c25e17a6761 Mon Sep 17 00:00:00 2001 From: liuhong Date: Tue, 9 Aug 2022 15:43:56 +0000 Subject: [PATCH 2/4] *Fix bug #63783. --- module/bug/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/model.php b/module/bug/model.php index 30993d7042..637b226420 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -3199,7 +3199,7 @@ class bugModel extends model $title = "title='" . zget($projectPairs, $bug->project, '') . "'"; break; case 'plan': - $title = "title='" . zget($plans, $bug->plan) . "'"; + $title = "title='" . zget($plans, $bug->plan,'') . "'"; break; case 'execution': $title = "title='" . zget($executions, $bug->execution) . "'"; From 70c3da83034782b920db87deb627b9c9c4a4a8d1 Mon Sep 17 00:00:00 2001 From: liuhong Date: Tue, 9 Aug 2022 15:47:46 +0000 Subject: [PATCH 3/4] *Finish task 63783 --- module/bug/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/model.php b/module/bug/model.php index 637b226420..30993d7042 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -3199,7 +3199,7 @@ class bugModel extends model $title = "title='" . zget($projectPairs, $bug->project, '') . "'"; break; case 'plan': - $title = "title='" . zget($plans, $bug->plan,'') . "'"; + $title = "title='" . zget($plans, $bug->plan) . "'"; break; case 'execution': $title = "title='" . zget($executions, $bug->execution) . "'"; From 59afee1b053e38d17345111c552507a1ad8bdfaf Mon Sep 17 00:00:00 2001 From: liuhong Date: Wed, 10 Aug 2022 00:12:08 +0000 Subject: [PATCH 4/4] *Finish task #63783. --- module/testcase/config.php | 2 +- module/testcase/css/browse.css | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/module/testcase/config.php b/module/testcase/config.php index ae74d339c7..9b21c281e2 100644 --- a/module/testcase/config.php +++ b/module/testcase/config.php @@ -185,7 +185,7 @@ $config->testcase->datatable->fieldList['status']['required'] = 'no'; $config->testcase->datatable->fieldList['lastEditedBy']['title'] = 'lastEditedBy'; $config->testcase->datatable->fieldList['lastEditedBy']['fixed'] = 'no'; -$config->testcase->datatable->fieldList['lastEditedBy']['width'] = '80'; +$config->testcase->datatable->fieldList['lastEditedBy']['width'] = '92'; $config->testcase->datatable->fieldList['lastEditedBy']['required'] = 'no'; $config->testcase->datatable->fieldList['lastEditedDate']['title'] = 'lastEditedDate'; diff --git a/module/testcase/css/browse.css b/module/testcase/css/browse.css index 0ed94fd1f8..8b43d91f06 100644 --- a/module/testcase/css/browse.css +++ b/module/testcase/css/browse.css @@ -27,4 +27,3 @@ tbody > tr > td .icon-share {font-size: 9px;} #importToLib .select-lib {width: 100px; text-align: right;} #subHeader #currentBranch + #dropMenu .col-left {padding-bottom: 30px;} -th.c-lastEditedBy {width: 92px !important;}