Skip to content

Commit

Permalink
fix(sql lab): increase the size of the action icons in the history tab
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomedina248 committed Apr 6, 2022
1 parent c4baa82 commit 46bd9f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions superset-frontend/src/SqlLab/components/QueryTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 46bd9f2

Please sign in to comment.