(issueCell: HTMLElement)
| 12 | } |
| 13 | |
| 14 | function linkifyFeature(issueCell: HTMLElement): void { |
| 15 | const url = getFeatureUrl(issueCell.textContent as FeatureId); |
| 16 | issueCell.replaceChildren( |
| 17 | <code> |
| 18 | <a className="d-inline-block" href={url}> |
| 19 | {issueCell.firstChild} |
| 20 | </a> |
| 21 | </code>, |
| 22 | ); |
| 23 | } |
| 24 | |
| 25 | function init(signal: AbortSignal): void { |
| 26 | // .js-csv-data is the old selector |
nothing calls this directly
no test coverage detected