()
| 80 | } |
| 81 | |
| 82 | async function showStoredCssHotfixes(): Promise<void> { |
| 83 | $('#hotfixes-field').textContent = getExclusions() |
| 84 | ?? await styleHotfixes.getCached(version) |
| 85 | ?? 'No CSS found in cache.'; |
| 86 | } |
| 87 | |
| 88 | async function fetchHotfixes(event: MouseEvent): Promise<void> { |
| 89 | const button = event.currentTarget as HTMLButtonElement; |
no test coverage detected