eschutho commented on code in PR #26327: URL: https://github.com/apache/superset/pull/26327#discussion_r1446720508
########## superset-frontend/src/features/alerts/AlertReportModal.tsx: ########## @@ -888,6 +890,10 @@ const AlertReportModal: FunctionComponent<AlertReportModalProps> = ({ const parsedValue = type === 'number' ? parseInt(value, 10) || null : value; updateAlertState(name, parsedValue); + + if (name === 'name') { + updateEmailSubject(); + } Review Comment: instead of using `onInputChange` here, you can just create a new event handler like this for example: ``` const onOwnersChange = (value: Array<SelectValue>) => { updateAlertState('owners', value || []); }; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org