This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch template_less in repository https://gitbox.apache.org/repos/asf/superset.git
commit b9be692e5507babc3fdb45a17d17becd21ce95d3 Author: Maxime Beauchemin <[email protected]> AuthorDate: Wed Mar 19 16:28:10 2025 -0700 fix MoreOutlined button background --- superset-frontend/src/features/charts/ChartCard.tsx | 2 +- superset-frontend/src/features/dashboards/DashboardCard.tsx | 2 +- superset-frontend/src/features/tags/TagCard.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/superset-frontend/src/features/charts/ChartCard.tsx b/superset-frontend/src/features/charts/ChartCard.tsx index 4c340ab524..a168391c5f 100644 --- a/superset-frontend/src/features/charts/ChartCard.tsx +++ b/superset-frontend/src/features/charts/ChartCard.tsx @@ -188,7 +188,7 @@ export default function ChartCard({ /> )} <Dropdown dropdownRender={() => menu} trigger={['click', 'hover']}> - <Button buttonSize="xsmall" type="link"> + <Button buttonSize="xsmall" type="link" buttonStyle="link"> <Icons.MoreOutlined iconSize="xl" /> </Button> </Dropdown> diff --git a/superset-frontend/src/features/dashboards/DashboardCard.tsx b/superset-frontend/src/features/dashboards/DashboardCard.tsx index edfd28f6d0..f3b586b269 100644 --- a/superset-frontend/src/features/dashboards/DashboardCard.tsx +++ b/superset-frontend/src/features/dashboards/DashboardCard.tsx @@ -177,7 +177,7 @@ function DashboardCard({ /> )} <Dropdown dropdownRender={() => menu} trigger={['hover', 'click']}> - <Button buttonSize="xsmall" type="link"> + <Button buttonSize="xsmall" buttonStyle="link"> <Icons.MoreOutlined iconSize="xl" /> </Button> </Dropdown> diff --git a/superset-frontend/src/features/tags/TagCard.tsx b/superset-frontend/src/features/tags/TagCard.tsx index 0bf1008f46..5ffd3bcd5d 100644 --- a/superset-frontend/src/features/tags/TagCard.tsx +++ b/superset-frontend/src/features/tags/TagCard.tsx @@ -109,7 +109,7 @@ function TagCard({ }} > <Dropdown dropdownRender={() => menu} trigger={['click', 'hover']}> - <Button buttonSize="xsmall" type="link"> + <Button buttonSize="xsmall" buttonStyle="link"> <Icons.MoreOutlined iconSize="xl" /> </Button> </Dropdown>
