Fix newlines not being considered sentence separators in account note (#16079)

Also bullets
master
Eugen Rochko 2021-04-20 02:34:08 +02:00 committed by GitHub
parent 18a2589ad3
commit b5ac17c4b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ const makeMapStateToProps = () => {
};
const getFirstSentence = str => {
const arr = str.split(/(([\.\?!]+\s)|[.。?!])/);
const arr = str.split(/(([\.\?!]+\s)|[.。?!\n•])/);
return arr[0];
};