From ddd16bc7a04749e6467a600a2400ba7adc33f985 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Wed, 1 Apr 2026 12:28:03 -0400 Subject: [PATCH] Show params column in log grid Exposes the stored params (e.g. date_from/date_to for baseline/reference) so the date range used in each operation is visible in the log. Co-Authored-By: Claude Sonnet 4.6 --- public/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app.js b/public/app.js index a795e1e..287a5cd 100644 --- a/public/app.js +++ b/public/app.js @@ -822,6 +822,8 @@ function renderLogGrid(logs) { { field: 'operation', headerName: 'Operation', width: 90 }, { field: 'slice', headerName: 'Slice', flex: 1, valueFormatter: p => p.value ? JSON.stringify(p.value) : '' }, + { field: 'params', headerName: 'Params', flex: 1, + valueFormatter: p => p.value ? JSON.stringify(p.value) : '' }, { field: 'note', headerName: 'Note', flex: 1 }, { headerName: '',