Revert TSCM menu changes - restore original layout

The simplified layout was causing display issues. Reverting to
the original working version.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-16 17:05:38 +00:00
parent a8bb56a109
commit 6354911c54
6 changed files with 239 additions and 173 deletions
-17
View File
@@ -7530,23 +7530,6 @@
}
}
// TSCM collapsible section toggle
function toggleTscmSection(contentId) {
const content = document.getElementById(contentId);
const icon = document.getElementById(contentId + 'Icon');
const section = content.closest('.tscm-collapsible');
if (content.style.display === 'none') {
content.style.display = 'block';
icon.textContent = '-';
section.classList.add('expanded');
} else {
content.style.display = 'none';
icon.textContent = '+';
section.classList.remove('expanded');
}
}
async function startTscmSweep() {
const sweepType = document.getElementById('tscmSweepType').value;
const baselineId = document.getElementById('tscmBaselineSelect').value || null;