Replace space with tabulator and enter as separators (#12730)

This commit is contained in:
Kamil Gabryjelski 2021-01-25 16:01:10 +01:00 committed by GitHub
parent 878f1238ba
commit 90856544e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ export default class AdhocFilterEditPopoverSimpleTabContent extends React.Compon
allowClear: true,
showSearch: true,
mode: MULTI_OPERATORS.has(operator) && 'tags',
tokenSeparators: [',', ' ', ';'],
tokenSeparators: [',', '\n', '\t', ';'],
loading: this.state.loading,
value: comparator,
onChange: this.onComparatorChange,