mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-04-27 00:55:14 +00:00
fix: force table reflow during detail pane drag resize
This commit is contained in:
@@ -38,6 +38,9 @@
|
||||
const w = Math.max(280, Math.min(window.innerWidth * 0.7, startW - (e2.clientX - startX)));
|
||||
panel.style.width = w + 'px';
|
||||
panel.style.minWidth = w + 'px';
|
||||
// Force table to reflow with new available width
|
||||
const left = document.getElementById('pktLeft');
|
||||
if (left) { left.style.overflow = 'hidden'; void left.offsetWidth; left.style.overflow = ''; }
|
||||
}
|
||||
function onUp() {
|
||||
handle.classList.remove('dragging');
|
||||
|
||||
Reference in New Issue
Block a user