* Adjust for user execution page.

This commit is contained in:
wangyidong
2023-06-13 18:59:26 +08:00
parent f062b69579
commit 4115adbd1d
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -21,10 +21,12 @@ $cols['name']['nestedToggle'] = false;
$cols['name']['type'] = 'text';
$cols['name']['link'] = array('module' => 'execution', 'method' => 'view', 'params' => 'executionID={id}');
$cols['id'] = array('type' => 'checkID', 'fixed' => 'left', 'title' => $lang->idAB, 'checkbox' => false);
$cols['id'] = array('type' => 'checkID', 'title' => $lang->idAB, 'checkbox' => false);
$cols['role'] = array('type' => 'user', 'title' => $lang->team->role);
$cols['join'] = array('type' => 'date', 'title' => $lang->team->join);
$cols['hours'] = array('type' => 'number', 'title' => $lang->team->hours);
$cols['hours'] = array('type' => 'number', 'width' => 100, 'title' => $lang->team->hours);
$cols = array_map(function($col){unset($col['fixed'], $col['sortType']); return $col;}, $cols);
panel
(