()
| 5 | let appVersion: string; |
| 6 | |
| 7 | export function AppVersion(): Malevic.Child { |
| 8 | if (!appVersion) { |
| 9 | appVersion = chrome.runtime.getManifest().version; |
| 10 | } |
| 11 | return ( |
| 12 | <label class="darkreader-version">{getLocalMessage('version')} {appVersion}</label> |
| 13 | ); |
| 14 | } |
nothing calls this directly
no test coverage detected