fix: 修复`上次更新`时间错误的问题

This commit is contained in:
xugaoyi 2020-11-10 19:35:30 +08:00
parent 9eb68c2b53
commit 36f426fa95
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ module.exports = {
{
transformer: (timestamp, lang) => {
const moment = require('moment') // https://momentjs.com/
return moment(timestamp).format('YYYY/MM/DD, H:MM:SS');
return moment(timestamp).format('YYYY/MM/DD, hh:mm:ss');
}
}
]