mirror of
https://github.com/smittix/intercept.git
synced 2026-07-03 23:33:38 -07:00
fix: load SignalIdModal on dashboard pages; clear status on zero matches
- Added signal-id-modal.js script to base_dashboard.html (nav button was silent on dashboard pages) - Added else branch to clear "Searching…" status when zero matches returned Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -277,6 +277,8 @@ window.SignalIdModal = (function () {
|
||||
if (matches.length) {
|
||||
_setStatus(matches.length + ' match' + (matches.length !== 1 ? 'es' : '')
|
||||
+ ' for ' + freq.toFixed(4) + ' MHz');
|
||||
} else {
|
||||
_setStatus('');
|
||||
}
|
||||
_renderResults(matches, freq);
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user