Commit ·
61c08f7
1
Parent(s): ac2f5da
Remove epitomic/graph banners; update fidelity distribution figure
Browse files
frontend/src/components/datasets/protein/ProteinDashboard.tsx
CHANGED
|
@@ -344,13 +344,6 @@ export function ProteinDashboard() {
|
|
| 344 |
</p>
|
| 345 |
</section>
|
| 346 |
|
| 347 |
-
{/* Banner image above the search box — no title, no frame */}
|
| 348 |
-
<img
|
| 349 |
-
src="/api/protein/plots/epitomic.png?v=20260622"
|
| 350 |
-
alt=""
|
| 351 |
-
style={{ width: '100%', maxWidth: '640px', height: 'auto', display: 'block', margin: '0 auto' }}
|
| 352 |
-
/>
|
| 353 |
-
|
| 354 |
{/* Search Panel Full Width */}
|
| 355 |
<section className="border border-gray-200 rounded-2xl p-6 bg-white shadow-sm hover:border-slate-900 hover:shadow-lg hover:-translate-y-0.5 transition-all duration-300">
|
| 356 |
<FilterPanel
|
|
@@ -370,13 +363,6 @@ export function ProteinDashboard() {
|
|
| 370 |
/>
|
| 371 |
</section>
|
| 372 |
|
| 373 |
-
{/* Graph image between search box and statistics — no title, no frame */}
|
| 374 |
-
<img
|
| 375 |
-
src="/api/protein/plots/graph.png?v=20260622"
|
| 376 |
-
alt=""
|
| 377 |
-
style={{ width: '100%', height: 'auto', display: 'block' }}
|
| 378 |
-
/>
|
| 379 |
-
|
| 380 |
{/* Default Dataset Summary View */}
|
| 381 |
<section className="border border-gray-200 rounded-2xl p-6 bg-white shadow-sm hover:border-slate-900 hover:shadow-lg hover:-translate-y-0.5 transition-all duration-300">
|
| 382 |
<StatsPanel />
|
|
|
|
| 344 |
</p>
|
| 345 |
</section>
|
| 346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 347 |
{/* Search Panel Full Width */}
|
| 348 |
<section className="border border-gray-200 rounded-2xl p-6 bg-white shadow-sm hover:border-slate-900 hover:shadow-lg hover:-translate-y-0.5 transition-all duration-300">
|
| 349 |
<FilterPanel
|
|
|
|
| 363 |
/>
|
| 364 |
</section>
|
| 365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 366 |
{/* Default Dataset Summary View */}
|
| 367 |
<section className="border border-gray-200 rounded-2xl p-6 bg-white shadow-sm hover:border-slate-900 hover:shadow-lg hover:-translate-y-0.5 transition-all duration-300">
|
| 368 |
<StatsPanel />
|
frontend/src/components/datasets/protein/StaticDistributionPlots.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import React from 'react';
|
| 2 |
|
| 3 |
const IMG_BASE = '/api/protein/plots';
|
| 4 |
-
const CACHE_BUST = '?v=
|
| 5 |
|
| 6 |
const plots = [
|
| 7 |
{ name: 'Structure Similarity', file: 'Structure-similarity.png' },
|
|
|
|
| 1 |
import React from 'react';
|
| 2 |
|
| 3 |
const IMG_BASE = '/api/protein/plots';
|
| 4 |
+
const CACHE_BUST = '?v=20260622c';
|
| 5 |
|
| 6 |
const plots = [
|
| 7 |
{ name: 'Structure Similarity', file: 'Structure-similarity.png' },
|