You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2021/01/26 07:28:00 UTC

[superset] branch 1.0 updated (4ee6317 -> be51717)

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a change to branch 1.0
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 4ee6317  Update translation files after capitalization PRs (1-9) (#12696)
     new 51c7b89  Replace space with tabulator and enter as separators (#12730)
     new be51717  fix: missing select menu background (#12759)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 superset-frontend/src/components/Select/styles.tsx                      | 1 +
 .../controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent.jsx   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


[superset] 01/02: Replace space with tabulator and enter as separators (#12730)

Posted by vi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch 1.0
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 51c7b896f406f3fdb3c0dac1025cf5b6571b8f35
Author: Kamil Gabryjelski <ka...@gmail.com>
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,


[superset] 02/02: fix: missing select menu background (#12759)

Posted by vi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch 1.0
in repository https://gitbox.apache.org/repos/asf/superset.git

commit be51717c37dcf628e7d2cd7783bdf586df588d10
Author: Jesse Yang <je...@airbnb.com>
AuthorDate: Mon Jan 25 22:19:55 2021 -0800

    fix: missing select menu background (#12759)
---
 superset-frontend/src/components/Select/styles.tsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/src/components/Select/styles.tsx b/superset-frontend/src/components/Select/styles.tsx
index 4776a72..ffbb102 100644
--- a/superset-frontend/src/components/Select/styles.tsx
+++ b/superset-frontend/src/components/Select/styles.tsx
@@ -199,6 +199,7 @@ export const DEFAULT_STYLES: PartialStylesConfig = {
   menuList: (provider, { theme: { borderRadius, colors } }) => [
     provider,
     css`
+      background: ${colors.lightest};
       border-radius: 0 0 ${borderRadius}px ${borderRadius}px;
       border: 1px solid ${colors.grayBorderDark};
       box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);