diff --git a/public/index.html b/public/index.html index eefbfa85..8dbfc26a 100644 --- a/public/index.html +++ b/public/index.html @@ -22,9 +22,9 @@ - - - + + + @@ -81,30 +81,30 @@
- - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/packets.js b/public/packets.js index 2fa45354..072f56f9 100644 --- a/public/packets.js +++ b/public/packets.js @@ -818,8 +818,8 @@ { key: 'rpt', label: 'Rpt' }, { key: 'details', label: 'Details' }, ]; - const isMobile = window.innerWidth <= 640; - const defaultHidden = isMobile ? ['region', 'hash', 'observer', 'path', 'rpt', 'size'] : ['region']; + const isNarrow = window.innerWidth <= 640; + const defaultHidden = isNarrow ? ['region', 'hash', 'observer', 'path', 'rpt', 'size'] : ['region']; let visibleCols; try { visibleCols = JSON.parse(localStorage.getItem('packets-visible-cols'));