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 9cb6c3b039281f6572adcd312d6501970662f115 Author: Maxime Beauchemin <[email protected]> AuthorDate: Wed Mar 19 16:57:58 2025 -0700 color --- superset-frontend/src/components/Label/reusable/PublishedLabel.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/superset-frontend/src/components/Label/reusable/PublishedLabel.tsx b/superset-frontend/src/components/Label/reusable/PublishedLabel.tsx index ec24180df0..ce33a5364a 100644 --- a/superset-frontend/src/components/Label/reusable/PublishedLabel.tsx +++ b/superset-frontend/src/components/Label/reusable/PublishedLabel.tsx @@ -33,12 +33,9 @@ const PublishedLabel: React.FC<PublishedLabelProps> = ({ const theme = useTheme(); const label = isPublished ? t('Published') : t('Draft'); const icon = isPublished ? ( - <Icons.CheckCircleOutlined - iconSize="s" - iconColor={theme.colors.primary.dark2} - /> + <Icons.CheckCircleOutlined iconSize="s" iconColor={theme.colorSuccess} /> ) : ( - <Icons.MinusCircleOutlined iconSize="s" /> + <Icons.MinusCircleOutlined iconSize="s" iconColor={theme.colorPrimary} /> ); const labelType = isPublished ? 'success' : 'primary';
