* Fix case run time date type error. bug #45108.

This commit is contained in:
wangyuting
2024-01-25 16:46:42 +08:00
parent 80395ae034
commit c34ffecfd3
+2 -2
View File
@@ -25,8 +25,8 @@ $config->block->case->dtable->fieldList['status']['title'] = $lang->statusAB;
$config->block->case->dtable->fieldList['status']['sort'] = true;
$config->block->case->dtable->fieldList['lastRunDate']['name'] = 'lastRunDate';
$config->block->case->dtable->fieldList['lastRunDate']['type'] = 'date';
$config->block->case->dtable->fieldList['lastRunDate']['sort'] = 'date';
$config->block->case->dtable->fieldList['lastRunDate']['type'] = 'datetime';
$config->block->case->dtable->fieldList['lastRunDate']['sort'] = true;
$config->block->case->dtable->fieldList['lastRunResult']['name'] = 'lastRunResult';
$config->block->case->dtable->fieldList['lastRunResult']['sort'] = true;