This is an automated email from the ASF dual-hosted git repository.
rusackas 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 c6c9188a24 fix(sql lab): increase the size of the action icons in the
history tab (#19313)
c6c9188a24 is described below
commit c6c9188a2405ae326e4055ce611089ec9ae80fbb
Author: Diego Medina <[email protected]>
AuthorDate: Wed Apr 6 10:21:07 2022 -0400
fix(sql lab): increase the size of the action icons in the history tab
(#19313)
---
superset-frontend/src/SqlLab/components/QueryTable/index.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/superset-frontend/src/SqlLab/components/QueryTable/index.tsx
b/superset-frontend/src/SqlLab/components/QueryTable/index.tsx
index 65189c8ae0..f3f212c1b8 100644
--- a/superset-frontend/src/SqlLab/components/QueryTable/index.tsx
+++ b/superset-frontend/src/SqlLab/components/QueryTable/index.tsx
@@ -283,21 +283,21 @@ const QueryTable = ({
)}
placement="top"
>
- <Icons.Edit iconSize="s" />
+ <Icons.Edit iconSize="xl" />
</StyledTooltip>
<StyledTooltip
onClick={() => openQueryInNewTab(query)}
tooltip={t('Run query in a new tab')}
placement="top"
>
- <Icons.PlusCircleOutlined iconSize="xs" css={verticalAlign} />
+ <Icons.PlusCircleOutlined iconSize="xl" css={verticalAlign} />
</StyledTooltip>
{q.id !== latestQueryId && (
<StyledTooltip
tooltip={t('Remove query from log')}
onClick={() => removeQuery(query)}
>
- <Icons.Trash iconSize="xs" />
+ <Icons.Trash iconSize="xl" />
</StyledTooltip>
)}
</div>