style: 활동 로그 목록 값 축약 기준 30자 → 10자
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -122,7 +122,7 @@ class ActivityLog extends BaseController
|
|||||||
return '(없음)';
|
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)를 붙인다 */
|
/** 로그 1행에 사람이 읽기 쉬운 요약(summaryText)·변경목록(changeList)·로그인여부(isLogin)를 붙인다 */
|
||||||
|
|||||||
Reference in New Issue
Block a user