From ac21154fb6e69d0bab2e641c2aab7b412362c006 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Tue, 4 Aug 2020 14:15:45 +0530 Subject: [PATCH] mgr/dashboard: Fix for CrushMap viewer items getting compressed vertically Intents to fix the crushmap viewer tree children getting compressed vertically when more osd's are added. Fixes: https://tracker.ceph.com/issues/46826 Signed-off-by: Nizamudeen A (cherry picked from commit 166681df08e01e85617885f492d665a74486ab8f) --- .../src/app/ceph/cluster/crushmap/crushmap.component.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/crushmap/crushmap.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/crushmap/crushmap.component.scss index e69de29bb2d1..629646246dbe 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/crushmap/crushmap.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/crushmap/crushmap.component.scss @@ -0,0 +1,7 @@ +::ng-deep tree-root { + tree-viewport { + div:first-child { + height: unset !important; + } + } +} -- 2.47.3