diff --git a/module/bug/ui/browse.html.php b/module/bug/ui/browse.html.php index 513d745999..e0604bb060 100644 --- a/module/bug/ui/browse.html.php +++ b/module/bug/ui/browse.html.php @@ -192,7 +192,6 @@ dtable ( set::cols($cols), set::data(array_values($bugs)), - set::fixedLeftWidth('0.44'), set::userMap($users), set::customCols(true), set::checkable($canBatchAction), diff --git a/module/execution/config/dtable.php b/module/execution/config/dtable.php index 0e34ca2bfa..47d4d2d59a 100644 --- a/module/execution/config/dtable.php +++ b/module/execution/config/dtable.php @@ -15,6 +15,7 @@ $config->execution->dtable->fieldList['nameCol']['title'] = $lang->execut $config->execution->dtable->fieldList['nameCol']['name'] = 'nameCol'; $config->execution->dtable->fieldList['nameCol']['fixed'] = 'left'; $config->execution->dtable->fieldList['nameCol']['type'] = 'nestedTitle'; +$config->execution->dtable->fieldList['nameCol']['width'] = '38%'; $config->execution->dtable->fieldList['nameCol']['sortType'] = true; $config->execution->dtable->fieldList['nameCol']['minWidth'] = '356'; $config->execution->dtable->fieldList['nameCol']['nestedToggle'] = true; diff --git a/module/execution/ui/all.html.php b/module/execution/ui/all.html.php index 64f544539e..fed093c4f9 100644 --- a/module/execution/ui/all.html.php +++ b/module/execution/ui/all.html.php @@ -82,7 +82,6 @@ dtable set::cols($setting), set::data($tableData), set::checkable($canBatchAction), - set::fixedLeftWidth('44%'), set::customCols(true), set::footToolbar($footToolbar), set::onRenderCell(jsRaw('window.onRenderCell')),