From 219fd45ad71dd8266d37c14061a7099d21961d73 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 15 Apr 2026 11:46:19 -0400 Subject: [PATCH] fix(rdata): use outputPaths instead of tabs for single sub-nav bar Replaced dual-bar layout (subnav + tabbar) with standard outputPaths so rData views (Content Tree, Cloud, Analytics) render in the unified subnav pill bar like all other modules. Co-Authored-By: Claude Opus 4.6 --- modules/rdata/mod.ts | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/modules/rdata/mod.ts b/modules/rdata/mod.ts index da544253..86fb8d5a 100644 --- a/modules/rdata/mod.ts +++ b/modules/rdata/mod.ts @@ -268,9 +268,6 @@ function renderDataPage(space: string, activeTab: string, isSubdomain: boolean) body, scripts, styles: ``, - tabs: [...DATA_TABS], - activeTab, - tabBasePath: isSubdomain ? `/rdata` : `/${space}/rdata`, }); } @@ -321,9 +318,10 @@ export const dataModule: RSpaceModule = { description: "Real-time active visitor counts", }, ], - acceptsFeeds: ["data", "economic"], outputPaths: [ - { path: "datasets", name: "Datasets", icon: "📊", description: "Collected analytics datasets" }, - { path: "dashboards", name: "Dashboards", icon: "📈", description: "Analytics dashboards and reports" }, + { path: "tree", name: "Content Tree", icon: "🌳", description: "Hierarchical view of all CRDT documents" }, + { path: "cloud", name: "Cloud", icon: "☁️", description: "Tag cloud visualization of content" }, + { path: "analytics", name: "Analytics", icon: "📊", description: "Usage metrics and engagement data" }, ], + acceptsFeeds: ["data", "economic"], };