MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / lifecycleLaneContent

Function lifecycleLaneContent

packages/server-e2e/src/report.ts:515–520  ·  view source on GitHub ↗
(event: StoredReportEvent)

Source from the content-addressed store, hash-verified

513}
514
515function lifecycleLaneContent(event: StoredReportEvent): string {
516 if (event.kind !== 'ws' || event.direction !== 'lifecycle') return '';
517 return `<button class="event-card ${escapeHtml(event.kind)} life-event" type="button">
518 <span class="event-title">${escapeHtml(eventSummary(event))}</span>
519</button>`;
520}
521
522function leftLaneSummary(event: StoredReportEvent): { title: string } | undefined {
523 if (event.kind === 'http') {

Callers 1

renderEventFunction · 0.85

Calls 2

eventSummaryFunction · 0.85
escapeHtmlFunction · 0.70

Tested by

no test coverage detected