This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch live-edits in repository https://gitbox.apache.org/repos/asf/superset.git
commit beb6571c1ddd57d25ce9c1e5aedf5c17a1be5f2a Author: Evan Rusackas <[email protected]> AuthorDate: Thu Jan 8 18:37:46 2026 -0800 fix(dashboard): use correct icon names in TabMenu - Icons.Link -> Icons.LinkOutlined - Icons.MoreVert -> Icons.MoreOutlined 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]> --- .../src/dashboard/components/gridComponents/Tab/TabMenu.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/dashboard/components/gridComponents/Tab/TabMenu.tsx b/superset-frontend/src/dashboard/components/gridComponents/Tab/TabMenu.tsx index ac0dccbdd16..c27502edc40 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/Tab/TabMenu.tsx +++ b/superset-frontend/src/dashboard/components/gridComponents/Tab/TabMenu.tsx @@ -114,7 +114,7 @@ export default function TabMenu({ { key: 'copy-permalink', label: t('Copy permalink'), - icon: <Icons.Link iconSize="m" />, + icon: <Icons.LinkOutlined iconSize="m" />, }, ...(canEditDashboard ? [ @@ -156,7 +156,7 @@ export default function TabMenu({ `} aria-label={t('Tab actions')} > - <Icons.MoreVert iconSize="m" iconColor={theme.colorTextSecondary} /> + <Icons.MoreOutlined iconSize="m" iconColor={theme.colorTextSecondary} /> </button> </Dropdown> );
