From fa2f66d3b30303e16cd2923839f7c91e0403d103 Mon Sep 17 00:00:00 2001 From: Lukasz Ostafin Date: Fri, 28 Jul 2023 13:37:37 +0200 Subject: [PATCH] IBX-6160: Fix tooltip text height calculation --- .../Resources/public/js/scripts/helpers/tooltips.helper.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bundle/Resources/public/js/scripts/helpers/tooltips.helper.js b/src/bundle/Resources/public/js/scripts/helpers/tooltips.helper.js index d0fe36489e..ff3fd3bbca 100644 --- a/src/bundle/Resources/public/js/scripts/helpers/tooltips.helper.js +++ b/src/bundle/Resources/public/js/scripts/helpers/tooltips.helper.js @@ -105,6 +105,7 @@ 'font-style': computedNodeStyles.getPropertyValue('font-style'), 'font-variant': computedNodeStyles.getPropertyValue('font-variant'), 'line-height': computedNodeStyles.getPropertyValue('line-height'), + 'word-break': 'break-all' }; const textHeight = getTextHeight(title, styles);