This is an automated email from the ASF dual-hosted git repository. elizabeth pushed a commit to branch elizabeth/color-link-to-border in repository https://gitbox.apache.org/repos/asf/superset.git
commit 23e72cec48a589b0adbd3a64f28ad442411b6f99 Author: Elizabeth Thompson <eschu...@gmail.com> AuthorDate: Thu Sep 18 14:59:39 2025 -0700 fix(dashboard): update header border to use colorBorder token Changed border-bottom color from colorSplit to colorBorder for better theme consistency. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <nore...@anthropic.com> --- superset-frontend/src/dashboard/components/Header/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/Header/index.jsx b/superset-frontend/src/dashboard/components/Header/index.jsx index 3d4afa39dd..1a4f3b43bf 100644 --- a/superset-frontend/src/dashboard/components/Header/index.jsx +++ b/superset-frontend/src/dashboard/components/Header/index.jsx @@ -100,7 +100,7 @@ import { useHeaderActionsMenu } from './useHeaderActionsDropdownMenu'; const extensionsRegistry = getExtensionsRegistry(); const headerContainerStyle = theme => css` - border-bottom: 1px solid ${theme.colorSplit}; + border-bottom: 1px solid ${theme.colorBorder}; `; const editButtonStyle = theme => css`