Commit 63b19374 by Jeong Gilmo

- redmineのチャットについて

 #36171 に対応しました。
parent 2e8f8963
......@@ -31,7 +31,8 @@ function formatDate(date) {
const REFERENCE = moment();
const TODAY = REFERENCE.clone().startOf('day');
let createdAt = moment(date);
const createdAtDay = createdAt.format('MMM DD');
// #36171
const createdAtDay = createdAt.format('MMM Do');
const createdAtTime = createdAt.format('HH:mm');
if (createdAt.isSame(TODAY, 'd')) {
createdAt = createdAtTime;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment