From b03cabd314e06635bde72f7e46ea0522d3c78493 Mon Sep 17 00:00:00 2001 From: nixocio Date: Tue, 3 May 2022 16:47:46 -0400 Subject: [PATCH] Adding popover for details is showing breaking of words Now that we are adding popovers for details pages, I noticed a couple of strings wrapping in odd places, update css to avoid that. Also `word-break: break-word` was deprecated. --- awx/ui/src/components/DetailList/Detail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/src/components/DetailList/Detail.js b/awx/ui/src/components/DetailList/Detail.js index f539f6f908..6837e23ea1 100644 --- a/awx/ui/src/components/DetailList/Detail.js +++ b/awx/ui/src/components/DetailList/Detail.js @@ -21,7 +21,7 @@ const DetailValue = styled( ) )` - word-break: break-all; + overflow-wrap: break-word; ${(props) => props.fullWidth && `