You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2023/07/21 00:24:41 UTC

[superset] branch master updated: fix: column/metric type icons look too small (#24740)

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

maximebeauchemin 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 341b8d41c5 fix: column/metric type icons look too small (#24740)
341b8d41c5 is described below

commit 341b8d41c5ba15c3617a61a92779b670c4ece43d
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Thu Jul 20 17:24:35 2023 -0700

    fix: column/metric type icons look too small (#24740)
---
 .../src/components/ColumnTypeLabel/ColumnTypeLabel.tsx                  | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx b/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx
index 772807e0f0..19ae7bd78d 100644
--- a/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx
@@ -44,6 +44,8 @@ const TypeIconWrapper = styled.div`
     && svg {
       margin-right: 0;
       margin-left: 0;
+      width: 100%;
+      height: 100%;
     }
   `};
 `;