This is an automated email from the ASF dual-hosted git repository.
villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 9085654 Replace space with tabulator and enter as separators (#12730)
9085654 is described below
commit 90856544e97a45a37ea0b1341beffa36d578d06b
Author: Kamil Gabryjelski <[email protected]>
AuthorDate: Mon Jan 25 16:01:10 2021 +0100
Replace space with tabulator and enter as separators (#12730)
---
.../controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx
b/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx
index 9940d06..df79f57 100644
---
a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx
+++
b/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx
@@ -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,