From 13ca4bd9cbfed51c28af7bdf4c7afe12cc054fae Mon Sep 17 00:00:00 2001 From: c4ch3c4d3 Date: Wed, 19 Aug 2026 06:33:35 -0500 Subject: [PATCH] =?UTF-8?q?ui:=20recon=20card=20order=20=E2=80=94=20Channe?= =?UTF-8?q?l=20Map=20above=20Access=20Points,=20Compare=20APs=20below?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- payload/user/remote_access/pager-webui/www/index.html | 2 +- payload/user/remote_access/pager-webui/www/js/views.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/payload/user/remote_access/pager-webui/www/index.html b/payload/user/remote_access/pager-webui/www/index.html index 6bb5066..3d1ea33 100644 --- a/payload/user/remote_access/pager-webui/www/index.html +++ b/payload/user/remote_access/pager-webui/www/index.html @@ -268,7 +268,7 @@ - + diff --git a/payload/user/remote_access/pager-webui/www/js/views.js b/payload/user/remote_access/pager-webui/www/js/views.js index 76b76e0..b23c0f0 100644 --- a/payload/user/remote_access/pager-webui/www/js/views.js +++ b/payload/user/remote_access/pager-webui/www/js/views.js @@ -1825,7 +1825,6 @@ views.recon = (root) => { // ---- compare: select up to 6 APs; the rest of the page focuses on them ---- const cmpCard = h('div', { class: 'section recon-compare-card' }); - root.appendChild(cmpCard); cmpCard.appendChild(h('h2', { text: 'Compare APs' })); const cmpCanvas = h('canvas', { id: 'recon-compare', style: 'width:100%;height:150px' }); cmpCard.appendChild(cmpCanvas); @@ -1888,11 +1887,12 @@ views.recon = (root) => { // ---- results tables ---- const apCard = h('div', { class: 'section recon-scan-results-card' }); - root.appendChild(apCard); - // ---- channel map (under Access Points) ---- + // ---- channel map (above Access Points) ---- const mapCard = h('div', { class: 'section recon-map-card' }); root.appendChild(mapCard); + root.appendChild(apCard); + root.appendChild(cmpCard); mapCard.appendChild(h('h2', { text: 'Channel Map' })); mapCard.appendChild(h('div', { class: 'recon-map-sub', text: 'Access points placed at their reported center frequency. The radio does not report channel width, so every lobe assumes 20 MHz. Hover a lobe (or click to pin) to see the networks under it.' })); const mapChips = h('div', { class: 'recon-chips-row recon-map-chips' });