Skip to content

Commit

Permalink
feat(select filter): add CRLF separator for Windows (#21867)
Browse files Browse the repository at this point in the history
Co-authored-by: mapledan <s1991829@gmail.com>
  • Loading branch information
mapledan and mapledan committed Oct 19, 2022
1 parent 9aa804e commit 7c4102c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset-frontend/src/components/Select/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];

Expand Down

0 comments on commit 7c4102c

Please sign in to comment.