style: 활동 로그 목록 값 축약 기준 30자 → 10자

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
taekyoungc
2026-06-26 10:11:58 +09:00
parent 634b29148c
commit 36b9ada903

View File

@@ -122,7 +122,7 @@ class ActivityLog extends BaseController
return '(없음)';
}
return mb_strlen($s) > 30 ? mb_substr($s, 0, 30) . '…' : $s;
return mb_strlen($s) > 10 ? mb_substr($s, 0, 10) . '…' : $s;
}
/** 로그 1행에 사람이 읽기 쉬운 요약(summaryText)·변경목록(changeList)·로그인여부(isLogin)를 붙인다 */