diff --git a/client/src/components/util/truncate.js b/client/src/components/util/truncate.js index e8d2016b..9d103ca4 100644 --- a/client/src/components/util/truncate.js +++ b/client/src/components/util/truncate.js @@ -52,18 +52,17 @@ export default class Truncate extends Component { }; render() { - const { - children, + const { children, size, fontSize } = this.props; + const originalString = children[0].text; + const truncatedString = this.maybeTruncateString( + originalString, size, - fontSize, - "data-testid": testID, - "data-testclass": testClass, - style, - } = this.props; - const truncatedString = this.maybeTruncateString(children, size, fontSize); + fontSize + ); + children[0].text = truncatedString; return ( - - {truncatedString || children} - + {children} ); }