This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch fire-alert
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 825043009b0d4654a6fbc1757f4faa095f11ff0a
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Wed Sep 10 00:11:39 2025 -0700

    fix: Consistent asterisk styling in AlertReportModal
    
    Update custom .required CSS in AlertReportModal to use theme.colorIcon
    for consistency with the shared ModalFormField component.
    
    AlertReportModal was using its own .required CSS that overrode the
    dynamic validation-based styling, causing inconsistent asterisk colors
    across different modals.
    
    Now all required field asterisks use the same subtle theme.colorIcon
    color for a consistent, professional appearance.
    
    🤖 Generated with [Claude Code](https://claude.ai/code)
    
    Co-Authored-By: Claude <[email protected]>
---
 superset-frontend/src/features/alerts/AlertReportModal.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/features/alerts/AlertReportModal.tsx 
b/superset-frontend/src/features/alerts/AlertReportModal.tsx
index 4b1d76dc2e..ace9501303 100644
--- a/superset-frontend/src/features/alerts/AlertReportModal.tsx
+++ b/superset-frontend/src/features/alerts/AlertReportModal.tsx
@@ -252,7 +252,7 @@ export const StyledInputContainer = styled.div`
 
     .required {
       margin-left: ${theme.sizeUnit / 2}px;
-      color: ${theme.colorError};
+      color: ${theme.colorIcon};
     }
 
     .control-label {

Reply via email to