fix: revert relative base path and fix processor table overflow
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:
@@ -42,17 +42,14 @@
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Processor section — fills remaining vertical space */
|
||||
/* Processor section — auto height so table rows are never clipped */
|
||||
.processorSection {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/* Diagram container — fills remaining space inside processor section */
|
||||
/* Diagram container — fixed height for route diagram */
|
||||
.diagramHeight {
|
||||
flex: 1;
|
||||
height: 420px;
|
||||
min-height: 280px;
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ export default defineConfig({
|
||||
optimizeDeps: {
|
||||
include: ['swagger-ui-dist/swagger-ui-bundle'],
|
||||
},
|
||||
base: './',
|
||||
base: '/',
|
||||
build: {
|
||||
outDir: 'dist',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user