From 5f1613ccaf0d2fad406f24352a6836987234edae Mon Sep 17 00:00:00 2001 From: Aashish Sharma Date: Wed, 16 Sep 2020 12:19:10 +0530 Subject: [PATCH] mgr/dashboard: table detail rows overflow Added word-wrap to the rgw-bucket-details table rows to fix overflow of values Fixes:https://tracker.ceph.com/issues/47434 Signed-off-by: Aashish Sharma (cherry picked from commit 7196e03449d585a6b7e1e4065120a571fe2ab894) --- .../rgw-bucket-details/rgw-bucket-details.component.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.scss index e69de29bb2d1d..d293c9d981980 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.scss @@ -0,0 +1,7 @@ +table { + table-layout: fixed; +} + +table td { + word-wrap: break-word; +} -- 2.39.5