You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by am...@apache.org on 2021/02/18 17:50:23 UTC

[superset] branch chore/filter_name_uncapitalize created (now 7e99942)

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

amitmiran pushed a change to branch chore/filter_name_uncapitalize
in repository https://gitbox.apache.org/repos/asf/superset.git.


      at 7e99942  fix: uncapitalize filter name

This branch includes the following new commits:

     new 7e99942  fix: uncapitalize filter name

The 1 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.



[superset] 01/01: fix: uncapitalize filter name

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

amitmiran pushed a commit to branch chore/filter_name_uncapitalize
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 7e9994227bec37612b92cac2988e13b69a79ac45
Author: amitmiran137 <am...@nielsen.com>
AuthorDate: Thu Feb 18 19:49:09 2021 +0200

    fix: uncapitalize filter name
---
 .../src/dashboard/components/FiltersBadge/DetailsPanel.tsx              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel.tsx b/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel.tsx
index 7815297..27e7efe 100644
--- a/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel.tsx
+++ b/superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel.tsx
@@ -51,7 +51,7 @@ const Indicator = ({
       <ItemIcon>
         <SearchOutlined />
       </ItemIcon>
-      {name.toUpperCase()}
+      {name}
       {value.length ? ': ' : ''}
     </Title>
     <FilterValue>{value.length ? value.join(', ') : ''}</FilterValue>