[object Object]

← back to Rentv Sheet Enrich Refine

Live console: FORCE grouping off on every load (kills the black sub-sort header bars for good; was persisting via localStorage)

2a2199676cfa1125c713278b8d83758b3d29cf02 · 2026-08-13 16:24:25 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit 2a2199676cfa1125c713278b8d83758b3d29cf02
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Aug 13 16:24:25 2026 -0700

    Live console: FORCE grouping off on every load (kills the black sub-sort header bars for good; was persisting via localStorage)
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 public_live/index.html | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/public_live/index.html b/public_live/index.html
index 40adc1b..86a83e2 100644
--- a/public_live/index.html
+++ b/public_live/index.html
@@ -197,8 +197,9 @@ let VIEW=LS.get('view','table'), GID=LS.get('gid',null), editing=false, curRow=n
 let SELECTED=new Set(LS.get('sheets',[]));   // selected sheet gids (1..all) shown combined
 function curKey(){ return SELECTED.size===1 ? String([...SELECTED][0]) : ('combo.'+[...SELECTED].sort().join('-')); }
 let FILTERS={}, SEARCH='', SORT=LS.get('sort',null), GROUP=LS.get('group',''), HIDDEN=new Set(LS.get('hidden.'+(GID||''),[])), COLW={}, ORDER=[], dragCol=null;
-// one-time reset: grouping was on by default and produced unwanted black header bars — turn it off (Group dropdown re-enables it)
-if(!LS.get('nogroup2026')){ GROUP=''; LS.set('group',''); LS.set('nogroup2026',1); }
+// grouping produced unwanted black "sub-sort" header bars — FORCE it off on every load (never persists).
+// the Group dropdown still works within a session for anyone who wants it; it just won't stick across refreshes.
+GROUP=''; LS.set('group','');
 let LOOKUP=null;   // when set to a column index, the main area shows that field's full value lookup
 const MAXROWS=2500;
 function pk(){return 'p'+GID}  // per-tab localStorage namespace

← 5e82fcf Live console: turn OFF grouping (removes the unwanted black  ·  back to Rentv Sheet Enrich Refine  ·  Live console: Width presets (Tight/Cozy/Wide/Fit + auto-refi 00fc8a6 →