fix(FN-1952): bound recovery and task log growth

This commit is contained in:
gsxdsm
2026-04-16 19:32:35 -07:00
parent bede73c81d
commit 99394ee05c
16 changed files with 332 additions and 37 deletions

View File

@@ -1256,6 +1256,11 @@ export function TaskDetailModal({
) : (
<div className="detail-activity">
<h4>Activity</h4>
{(workingTask as typeof workingTask & { activityLogTruncatedCount?: number }).activityLogTruncatedCount ? (
<div className="detail-log-truncated">
Showing the most recent {workingTask.log.length} activity entries.
</div>
) : null}
{workingTask.log && workingTask.log.length > 0 ? (
<div className="detail-activity-list">
{[...workingTask.log].reverse().map((entry, i) => (