tractatus/public/test-pressure-chart.html
TheFlow 2298d36bed fix(submissions): restructure Economist package and fix article display
- Create Economist SubmissionTracking package correctly:
  * mainArticle = full blog post content
  * coverLetter = 216-word SIR— letter
  * Links to blog post via blogPostId
- Archive 'Letter to The Economist' from blog posts (it's the cover letter)
- Fix date display on article cards (use published_at)
- Target publication already displaying via blue badge

Database changes:
- Make blogPostId optional in SubmissionTracking model
- Economist package ID: 68fa85ae49d4900e7f2ecd83
- Le Monde package ID: 68fa2abd2e6acd5691932150

Next: Enhanced modal with tabs, validation, export

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 08:47:42 +13:00

29 lines
1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test - Pressure Chart</title>
<link rel="stylesheet" href="/css/tailwind.css?v=1761163813">
</head>
<body class="p-10 bg-gray-50">
<h1 class="text-3xl font-bold mb-8">Pressure Chart Test Page</h1>
<div class="max-w-2xl">
<div class="bg-gray-50 rounded-xl shadow-lg p-6 border border-gray-200">
<div id="pressure-chart"></div>
</div>
</div>
<div class="mt-8 p-4 bg-blue-50 border border-blue-200 rounded max-w-2xl">
<h2 class="font-bold mb-2">Debug Info:</h2>
<p class="text-sm">If both buttons are visible here, the issue is in the architecture.html page layout.</p>
<p class="text-sm">If buttons are still hidden, the issue is in the JavaScript component itself.</p>
</div>
<script src="/js/components/pressure-chart.js?v=1761163813"></script>
<script src="/js/components/activity-timeline.js?v=1761163813"></script>
</body>
</html>