Chat History Panel Overhaul, shorter filenames

This commit is contained in:
RossAscends
2023-10-30 14:16:20 +09:00
parent 2a9250c937
commit a27e7a139a
5 changed files with 61 additions and 96 deletions

View File

@@ -173,7 +173,7 @@ export function humanizedDateTime() {
let humanMillisecond =
(baseDate.getMilliseconds() < 10 ? "0" : "") + baseDate.getMilliseconds();
let HumanizedDateTime =
humanYear + "-" + humanMonth + "-" + humanDate + " @" + humanHour + "h " + humanMinute + "m " + humanSecond + "s " + humanMillisecond + "ms";
humanYear + "-" + humanMonth + "-" + humanDate + "@" + humanHour + "h" + humanMinute + "m" + humanSecond + "s";
return HumanizedDateTime;
}