fix: revert relative base path and fix processor table overflow
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m22s
CI / docker (push) Successful in 1m10s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 42s

Revert base: './' back to '/' — relative asset paths break on deep
URLs like /dashboard/app/route where the browser resolves assets to
/dashboard/app/assets/ instead of /assets/.

Also fix processor metrics table clipping: remove flex:1/min-height:0
from .processorSection so the table takes its natural content height
and the page scrolls to show all rows (was clipping at ~12 of 18).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-13 21:16:59 +02:00
parent 025e1cfc34
commit 67e2c1a531
2 changed files with 5 additions and 8 deletions

View File

@@ -42,17 +42,14 @@
text-decoration: underline; text-decoration: underline;
} }
/* Processor section — fills remaining vertical space */ /* Processor section — auto height so table rows are never clipped */
.processorSection { .processorSection {
flex: 1; overflow: visible;
display: flex;
flex-direction: column;
min-height: 0;
} }
/* Diagram container — fills remaining space inside processor section */ /* Diagram container — fixed height for route diagram */
.diagramHeight { .diagramHeight {
flex: 1; height: 420px;
min-height: 280px; min-height: 280px;
} }

View File

@@ -27,7 +27,7 @@ export default defineConfig({
optimizeDeps: { optimizeDeps: {
include: ['swagger-ui-dist/swagger-ui-bundle'], include: ['swagger-ui-dist/swagger-ui-bundle'],
}, },
base: './', base: '/',
build: { build: {
outDir: 'dist', outDir: 'dist',
}, },