(event: StoredReportEvent)
| 513 | } |
| 514 | |
| 515 | function 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 | |
| 522 | function leftLaneSummary(event: StoredReportEvent): { title: string } | undefined { |
| 523 | if (event.kind === 'http') { |
no test coverage detected