feat(select filter): add CRLF separator for Windows (#21867)

Co-authored-by: mapledan <s1991829@gmail.com>
This commit is contained in:
mapledan 2022-10-19 19:49:23 +08:00 committed by GitHub
parent 9aa804e070
commit 7c4102c20e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ import { rankedSearchCompare } from 'src/utils/rankedSearchCompare';
export const MAX_TAG_COUNT = 4;
export const TOKEN_SEPARATORS = [',', '\n', '\t', ';'];
export const TOKEN_SEPARATORS = [',', '\r\n', '\n', '\t', ';'];
export const EMPTY_OPTIONS = [];