(meta?: {
name?: string
description?: string
})
| 115 | } |
| 116 | |
| 117 | function buildRowTooltip(meta?: { |
| 118 | name?: string |
| 119 | description?: string |
| 120 | }): string | undefined { |
| 121 | if (!meta) return undefined |
| 122 | const parts: Array<string> = [] |
| 123 | if (meta.name) parts.push(meta.name) |
| 124 | if (meta.description) parts.push(meta.description) |
| 125 | return parts.length > 0 ? parts.join(' — ') : undefined |
| 126 | } |
| 127 | |
| 128 | function SequenceListRow(props: { |
| 129 | reg: SequenceRegistrationView |
no outgoing calls
no test coverage detected
searching dependent graphs…