()
| 11785 | if (modelInfoEl) { |
| 11786 | modelInfoEl.style.display = 'block'; |
| 11787 | const model = uniqueModelsData[0].model; |
| 11788 | const modelNameEl = document.getElementById('tag-preview-model-name'); |
| 11789 | const modelPathEl = document.getElementById('tag-preview-model-path'); |
| 11790 | |
| 11791 | if (modelNameEl && modelPathEl) { |
| 11792 | const fileName = model.fileName || model.filePath?.split(/[/\\]/).pop() || 'Unknown'; |
| 11793 | const filePath = model.filePath || 'Unknown path'; |
nothing calls this directly
no outgoing calls
no test coverage detected