(issueCell: HTMLElement)
| 7 | import observe from '../helpers/selector-observer.js'; |
| 8 | |
| 9 | function linkifyIssue(issueCell: HTMLElement): void { |
| 10 | // Linkify with hovercards |
| 11 | issueCell.replaceChildren(createRghIssueLink(issueCell.textContent)); |
| 12 | } |
| 13 | |
| 14 | function linkifyFeature(issueCell: HTMLElement): void { |
| 15 | const url = getFeatureUrl(issueCell.textContent as FeatureId); |
nothing calls this directly
no test coverage detected