diff --git a/src/pages/DashboardPage.tsx b/src/pages/DashboardPage.tsx
index 209b611..b941a54 100644
--- a/src/pages/DashboardPage.tsx
+++ b/src/pages/DashboardPage.tsx
@@ -242,7 +242,11 @@ export function DashboardPage() {
{apiBase || '-'}
- {serverVersion && v{serverVersion}}
+ {serverVersion && (
+
+ v{serverVersion.trim().replace(/^[vV]+/, '')}
+
+ )}
{serverBuildDate && (
{new Date(serverBuildDate).toLocaleDateString(i18n.language)}
diff --git a/src/styles/layout.scss b/src/styles/layout.scss
index e0c11c4..9e733de 100644
--- a/src/styles/layout.scss
+++ b/src/styles/layout.scss
@@ -331,7 +331,7 @@
}
.main-content {
- flex: 0 0 auto;
+ flex: 1 0 auto;
padding: $spacing-lg;
display: flex;
flex-direction: column;