fix: Add space to the valid index characters list (#2316)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// @flow
|
||||
|
||||
export const validateIndexCharacters = (index: string) =>
|
||||
/^[\x21-\x7E]+$/i.test(index);
|
||||
new RegExp("^[\x20-\x7E]+$").test(index);
|
||||
|
||||
Reference in New Issue
Block a user