From 8811f3fd9230a488b087c6937f51f8f1a17feea1 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..8215c584be 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);