* Adjust code

This commit is contained in:
zenggang
2022-06-08 09:20:00 +00:00
parent 9549b91f83
commit 14ea5d8273
+1 -1
View File
@@ -2004,7 +2004,7 @@ class project extends control
*/
public function ajaxGetExecutions($projectID, $executionID = 0)
{
$executions = array('' => '') + $this->loadModel('execution')->getpairs($projectID, 'all');
$executions = array('' => '') + $this->loadModel('execution')->getPairs($projectID, 'all');
if($this->app->getViewType() == 'json') return print(json_encode($executionList));
return print(html::select('execution', $executions, $executionID, "class='form-control'"));