(items: Plugin[])
| 96 | } |
| 97 | |
| 98 | function renderItems(items: Plugin[]): void { |
| 99 | const list = document.getElementById('resource-list'); |
| 100 | if (!list) return; |
| 101 | |
| 102 | list.innerHTML = renderPluginsHtml(items); |
| 103 | } |
| 104 | |
| 105 | function getPluginRepositoryUrl(item: Plugin): string { |
| 106 | if (item.external && item.repository) return item.repository; |
no test coverage detected