(item: PluginItem)
| 110 | } |
| 111 | |
| 112 | function getPluginItemLabel(item: PluginItem): string { |
| 113 | const normalizedPath = item.path.replace(/^\.\//, ''); |
| 114 | return `${item.kind}: ${normalizedPath}`; |
| 115 | } |
| 116 | |
| 117 | function openPluginDetailsModal(path: string, trigger?: HTMLElement): void { |
| 118 | const item = pluginByPath.get(path); |
no outgoing calls
no test coverage detected