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

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,