()
| 16547 | if (!buttonsContainer) { |
| 16548 | return; |
| 16549 | } |
| 16550 | buttonsContainer.querySelectorAll('button[data-interface]').forEach(button => { |
| 16551 | const isActive = button.dataset.interface === activeInterface; |
| 16552 | button.classList.remove('bg-Ragnar-500', 'text-white', 'border-Ragnar-400', 'shadow'); |
| 16553 | button.classList.remove('bg-slate-800', 'text-gray-300', 'border-slate-700'); |
| 16554 | if (isActive) { |
| 16555 | button.classList.add('bg-Ragnar-500', 'text-white', 'border-Ragnar-400', 'shadow'); |
nothing calls this directly
no test coverage detected