mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Add more punctuation to regex
This commit is contained in:
parent
e320f64ba1
commit
ab12288979
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ const INITIAL_LOAD_NUM_INVITED = 5;
|
|||
const SHOW_MORE_INCREMENT = 100;
|
||||
|
||||
// Regex applied to member names before applying sort, to fuzzy it a little
|
||||
const SORT_REGEX = /[.?!,;:\-()[\]{}'"&@]+/g;
|
||||
const SORT_REGEX = /[.?!,;:\-()[\]{}'"&@#\\/+_=]+/g;
|
||||
|
||||
module.exports = createReactClass({
|
||||
displayName: 'MemberList',
|
||||
|
|
Loading…
Reference in a new issue