From 39e1d6481a663ca86646bf24db006574db37d7e2 Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Fri, 13 Feb 2026 09:40:26 +0000 Subject: [PATCH 1/2] Initial plan From 1f4351db9bcbb690ee97e232cdf95e93104f5c2e Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Fri, 13 Feb 2026 09:44:19 +0000 Subject: [PATCH 2/2] feat: add tree view rendering --- ETL Editor.html | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/ETL Editor.html b/ETL Editor.html index 509be1c..ea63bb0 100644 --- a/ETL Editor.html +++ b/ETL Editor.html @@ -140,6 +140,12 @@ .mappings-table th { font-size: 0.75rem; color: var(--text-secondary); } .mappings-table .form-control { font-size: 0.8rem; padding: 0.3rem 0.5rem; } .mappings-table td.actions { width: 1%; } + .tree-view { font-family: 'Fira Code', monospace; color: var(--text-primary); } + .tree-view ul { list-style: none; padding-left: 1rem; border-left: 1px solid var(--border); margin: 0.25rem 0; } + .tree-node { margin: 0.25rem 0; } + .tree-tag { color: var(--primary); } + .tree-attr { color: var(--secondary); } + .tree-text { color: var(--text-secondary); font-style: italic; }
@@ -166,7 +172,7 @@