diff --git a/src/Truncate/utils.js b/src/Truncate/utils.js index bb26f44539..380805c24a 100644 --- a/src/Truncate/utils.js +++ b/src/Truncate/utils.js @@ -11,7 +11,7 @@ const createCopyElement = (element) => { const newElement = document.createElement(element.tagName); newElement.setAttribute( 'style', - `line-height: ${LINE_HEIGHT_VALUE}px; display: inline-block;`, + `line-height: ${LINE_HEIGHT_VALUE}px; display: inline-block; word-break: break-word;`, ); return newElement; };