From aa1303e373d2bf5261a26b7b25fa5ce5982995cd Mon Sep 17 00:00:00 2001 From: Michael Pilosov Date: Wed, 22 Apr 2026 17:28:55 -0600 Subject: [PATCH] runs filter: add J (jitter) chip group alongside N and T --- app/web/static/runs-filter.js | 1 + app/web/templates/_runs.html | 3 ++- app/web/templates/index.html | 6 +++++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/app/web/static/runs-filter.js b/app/web/static/runs-filter.js index 71a8eba..e4e0988 100644 --- a/app/web/static/runs-filter.js +++ b/app/web/static/runs-filter.js @@ -11,6 +11,7 @@ { prop: 'embedder', chipsId: 'runs-flt-algo', numeric: false }, { prop: 'n', chipsId: 'runs-flt-n', numeric: true }, { prop: 't', chipsId: 'runs-flt-t', numeric: true }, + { prop: 'j', chipsId: 'runs-flt-j', numeric: true }, ]; for (const ax of AXES) { diff --git a/app/web/templates/_runs.html b/app/web/templates/_runs.html index 4359ca6..925ab9d 100644 --- a/app/web/templates/_runs.html +++ b/app/web/templates/_runs.html @@ -11,7 +11,8 @@ data-embedder="{{ r.embedder_short or '' }}" data-generator="{{ r.generator_short or '' }}" data-n="{{ r.params.get('num_points', '') if r.params else '' }}" - data-t="{{ r.params.get('num_timesteps', r.params.get('num_snapshots', '')) if r.params else '' }}"> + data-t="{{ r.params.get('num_timesteps', r.params.get('num_snapshots', '')) if r.params else '' }}" + data-j="{{ r.params.get('jitter_scale', '') if r.params else '' }}"> {% if r.emb_exists and not r.stale %} {% else %} diff --git a/app/web/templates/index.html b/app/web/templates/index.html index 1e2d32f..b09bf1c 100644 --- a/app/web/templates/index.html +++ b/app/web/templates/index.html @@ -328,6 +328,10 @@ T
+
+ J +
+
@@ -497,7 +501,7 @@ - +