forked from github/dataease
commit
92fd7e9702
@ -80,7 +80,7 @@ public class DataSetTableTaskLogService {
|
||||
row[0] = item.getName();
|
||||
row[1] = item.getDatasetName();
|
||||
row[2] = DateUtil.formatDateTime(new Date(item.getStartTime()));
|
||||
row[3] = DateUtil.formatDateTime(new Date(item.getEndTime()));
|
||||
row[3] = item.getEndTime() != null ? DateUtil.formatDateTime(new Date(item.getEndTime())) : "";
|
||||
row[4] = Translator.get("I18N_TASK_LOG_" + item.getStatus().toUpperCase()) ;
|
||||
return row;
|
||||
}).collect(Collectors.toList());
|
||||
|
4
backend/src/main/resources/db/migration/V52__1.18.5.sql
Normal file
4
backend/src/main/resources/db/migration/V52__1.18.5.sql
Normal file
@ -0,0 +1,4 @@
|
||||
UPDATE `my_plugin`
|
||||
SET `version` = '1.18.5'
|
||||
where `plugin_id` > 0
|
||||
and `version` = '1.18.4';
|
Loading…
Reference in New Issue
Block a user