()
| 14667 | function syncDOMSelectionWithSelectedModels() { |
| 14668 | document.querySelectorAll('.file-item').forEach(item => { |
| 14669 | const itemPath = item.getAttribute('data-filepath') || item.dataset.filepath; |
| 14670 | if (itemPath && isInSelectedModels(itemPath)) { |
| 14671 | item.classList.add('selected'); |
| 14672 | } else { |
| 14673 | item.classList.remove('selected'); |
| 14674 | } |
| 14675 | }); |
| 14676 | } |
| 14677 |
no test coverage detected