Merge pull request #4718 from dataease/pr@dev@pages

refactor: 升级版本号
This commit is contained in:
taojinlong 2023-03-08 10:32:27 +08:00 committed by GitHub
commit 92fd7e9702
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -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());

View File

@ -0,0 +1,4 @@
UPDATE `my_plugin`
SET `version` = '1.18.5'
where `plugin_id` > 0
and `version` = '1.18.4';