From ed07dde4925d7d1510c378e2d6ecb595c531c3ef Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Wed, 15 Apr 2026 08:42:07 -0400 Subject: [PATCH] Pivot: default settings panel to hidden on fresh load Co-Authored-By: Claude Sonnet 4.6 --- ui/src/pages/Pivot.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/pages/Pivot.jsx b/ui/src/pages/Pivot.jsx index 35433d2..a147263 100644 --- a/ui/src/pages/Pivot.jsx +++ b/ui/src/pages/Pivot.jsx @@ -182,7 +182,7 @@ export default function Pivot({ source }) { await plugin.restore(parsed.plugin_config || DEFAULT_PLUGIN_CONFIG) if (parsed.expand_depth != null) await applyExpandDepth(viewer, parsed.expand_depth) } else { - await viewer.restore({ table: source, settings: true, plugin_config: DEFAULT_PLUGIN_CONFIG }) + await viewer.restore({ table: source, settings: false, plugin_config: DEFAULT_PLUGIN_CONFIG }) await plugin.restore(DEFAULT_PLUGIN_CONFIG) } await viewer.flush()