()
| 15571 | if (configTabBtn && !configTabBtn.querySelector('.update-indicator')) { |
| 15572 | const indicator = document.createElement('span'); |
| 15573 | indicator.className = 'update-indicator absolute -top-1 -right-1 w-3 h-3 bg-orange-500 rounded-full pulse-glow'; |
| 15574 | configTabBtn.style.position = 'relative'; |
| 15575 | configTabBtn.appendChild(indicator); |
| 15576 | } |
| 15577 | } else { |
| 15578 | // Remove update indicator if up to date |
| 15579 | const configTabBtn = document.querySelector('[data-tab="config"]'); |
no outgoing calls
no test coverage detected