From 640ccff8228ab422d0d01adac0893387b349065f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20M=C3=BCller?= Date: Wed, 26 Mar 2025 09:00:45 +0100 Subject: [PATCH] Default OSD size now 1 --- app/templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/index.html b/app/templates/index.html index 46225d9..3e039bb 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -327,7 +327,7 @@ nodes: [ { osd_count: 4, - osd_size_gb: 1000 + osd_size_gb: 1 } ], result: { @@ -349,7 +349,7 @@ addNode() { this.nodes.push({ osd_count: 4, - osd_size_gb: this.storageUnit === 'TB' ? 1000 : 1 + osd_size_gb: 1 }); },