Skip to content

Commit a06d8ad

Browse files
committed
feat: expand correlogram hover context
Include session and timestamp details in correlogram point hover cards so each historical run exposes enough metadata to recreate the original solver case. Made-with: Cursor
1 parent 4234f72 commit a06d8ad

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

flexfoil-ui/src/components/panels/DataExplorerPanel.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ function buildRunHoverDetails(run: RunRow): Array<string | number> {
8686
run.n_panels,
8787
run.max_iter,
8888
run.solver_mode,
89+
run.session_id ?? 'n/a',
90+
run.created_at,
8991
];
9092
}
9193

@@ -99,6 +101,8 @@ const RUN_HOVER_TEMPLATE = [
99101
'Panels=%{customdata[5]}',
100102
'MaxIter=%{customdata[6]}',
101103
'Solver=%{customdata[7]}',
104+
'Session=%{customdata[8]}',
105+
'Created=%{customdata[9]}',
102106
].join('<br>');
103107

104108
// ────────────────────────────────────────────────────────────

0 commit comments

Comments
 (0)