From a01909e7588c7ff757079475e3ea6f1dc3054db7 Mon Sep 17 00:00:00 2001 From: Naman Munet Date: Wed, 24 Sep 2025 12:53:40 +0530 Subject: [PATCH] mgr/dashboard: Blank entry for Storage Capacity in dashboard under Cluster > Expand Cluster > Review https://tracker.ceph.com/issues/73220 Signed-off-by: Naman Munet --- .../create-cluster-review.component.html | 12 ++++-------- .../create-cluster-review.component.ts | 2 +- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.html b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.html index 2fbc6a75d63..81e55da3e68 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.html @@ -58,14 +58,10 @@ -
-
-

Storage Capacity

-
-
-

{{deploymentDescText}}

-
-
+ Storage Capacity + + + {{deploymentDescText}}
diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.ts index ed60ddf805a..c65782769a4 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.ts @@ -23,7 +23,7 @@ export class CreateClusterReviewComponent implements OnInit { services: Array = []; totalCPUs = 0; totalMemory = 0; - deploymentDescText: string; + deploymentDescText: string = '-'; isSimpleDeployment = true; constructor( -- 2.39.5