- Fix perspective-click handler to use event filter triples instead of __ROW_PATH__ — Perspective encodes row position as [col,'==',val] in detail.config.filter - buildWhere now skips unrecognised slice keys (e.g. pf_iter) instead of throwing, so only dimension columns reach the WHERE clause - Add draggable resize handle on the operation panel (160–480px) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
504 B
HTML
15 lines
504 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Pivot Forecast</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@perspective-dev/viewer@4.4.0/dist/css/themes.css" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|