Fixes string length issue for multibyte characters. (#2443)
This commit is contained in:
parent
d4f7f11c3c
commit
48652cb41e
4 changed files with 20 additions and 13 deletions
|
@ -1,4 +1,5 @@
|
|||
import PropTypes from 'prop-types';
|
||||
import { length } from 'stringz';
|
||||
|
||||
class CharacterCounter extends React.PureComponent {
|
||||
|
||||
|
@ -10,7 +11,7 @@ class CharacterCounter extends React.PureComponent {
|
|||
}
|
||||
|
||||
render () {
|
||||
const diff = this.props.max - this.props.text.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, "_").length;
|
||||
const diff = this.props.max - length(this.props.text);
|
||||
|
||||
return this.checkRemainingText(diff);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue