This commit is contained in:
holan20180123
2021-08-05 16:11:04 +08:00
parent cbcdd534ec
commit 34fca03d67
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -345,7 +345,7 @@ class gitlab extends control
$options = "<option value=''></option>";
foreach($executions as $index =>$execution)
{
$options .= "<option value='{$index}' data-name='{$execution}'>{$execution}</option>";
$options .= "<option title='{$execution}' value='{$index}' data-name='{$execution}'>{$execution}</option>";
}
return $this->send($options);
}