(path, type, name)
| 4076 | </div> |
| 4077 | `; |
| 4078 | } |
| 4079 | |
| 4080 | return html; |
| 4081 | } |
| 4082 | |
| 4083 | // Handle file/folder clicks |
| 4084 | async function handleFileClick(path, type, name) { |
| 4085 | if (type === 'dir') { |
| 4086 | await navigateToPath(path); |
| 4087 | } else if (type === 'file') { |
| 4088 | // Preview any file type - JSON packs or README files |
| 4089 | await previewFile(path, name); |
| 4090 | } |
no test coverage detected