Handle Surrogate Pairs in truncate() (#25148)

th-downstream
y.takahashi 1 year ago committed by GitHub
parent dd0d755824
commit 5c744a5d7d

@ -166,8 +166,9 @@ const makeMapStateToProps = () => {
}; };
const truncate = (str, num) => { const truncate = (str, num) => {
if (str.length > num) { const arr = Array.from(str);
return str.slice(0, num) + '…'; if (arr.length > num) {
return arr.slice(0, num).join('') + '…';
} else { } else {
return str; return str;
} }

Loading…
Cancel
Save