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:24 UTC

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

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>