fix: keep runtime UI changes self-contained

This commit is contained in:
Dotta 2026-04-10 22:36:45 -05:00
parent c566a9236c
commit 0162bb332c
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ export interface HeartbeatRun {
errorCode: string | null;
externalRunId: string | null;
processPid: number | null;
processGroupId: number | null;
processGroupId?: number | null;
processStartedAt: Date | null;
retryOfRunId: string | null;
processLossRetryCount: number;

View file

@ -343,7 +343,7 @@ export function ApprovalDetail() {
{new Date(comment.createdAt).toLocaleString()}
</span>
</div>
<MarkdownBody className="text-sm" softBreaks>{comment.body}</MarkdownBody>
<MarkdownBody className="text-sm">{comment.body}</MarkdownBody>
</div>
))}
</div>