This commit is contained in:
dyhj625 2025-04-01 15:45:59 +09:00
parent 6357a8eb44
commit a42b5ac191

View File

@ -133,7 +133,7 @@ return date.isToday() ? date.format('HH:mm') : date.format('YYYY-MM-DD');
// 14 ... // 14 ...
const truncateTitle = title => { const truncateTitle = title => {
return title.length > 10 ? title.slice(0, 10) + '...' : title; return title.length > 8 ? title.slice(0, 8) + '...' : title;
}; };
// ( 5) // ( 5)