From b36790445b334f5eb86979fdda196e3134530d0b Mon Sep 17 00:00:00 2001 From: you Date: Thu, 19 Mar 2026 20:59:50 +0000 Subject: [PATCH] fix: force table reflow during detail pane drag resize --- public/packets.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/packets.js b/public/packets.js index 195f87d..0cb1bf4 100644 --- a/public/packets.js +++ b/public/packets.js @@ -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');