From 5bd7fd7990a7f9d236f887e539fe1bce39712461 Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" <70410625+michael-s-molina@users.noreply.github.com> Date: Fri, 22 Dec 2023 08:32:59 -0300 Subject: [PATCH] chore: Adds a tooltip for the alert's SQL input (#26317) --- .../src/features/alerts/AlertReportModal.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/superset-frontend/src/features/alerts/AlertReportModal.tsx b/superset-frontend/src/features/alerts/AlertReportModal.tsx index 571c7b1b2a..e371efcf1b 100644 --- a/superset-frontend/src/features/alerts/AlertReportModal.tsx +++ b/superset-frontend/src/features/alerts/AlertReportModal.tsx @@ -152,6 +152,10 @@ const StyledModal = styled(Modal)` } `; +const StyledTooltip = styled(InfoTooltipWithTrigger)` + margin-left: ${({ theme }) => theme.gridUnit}px; +`; + const StyledIcon = (theme: SupersetTheme) => css` margin: auto ${theme.gridUnit * 2}px auto 0; color: ${theme.colors.grayscale.base}; @@ -397,10 +401,12 @@ export const TRANSLATIONS = { ALERT_CONDITION_TEXT: t('Alert condition'), DATABASE_TEXT: t('Database'), SQL_QUERY_TEXT: t('SQL Query'), + SQL_QUERY_TOOLTIP: t( + 'The result of this query should be a numeric-esque value', + ), TRIGGER_ALERT_IF_TEXT: t('Trigger Alert If...'), CONDITION_TEXT: t('Condition'), VALUE_TEXT: t('Value'), - VALUE_TOOLTIP: t('Threshold value should be double precision number'), REPORT_SCHEDULE_TEXT: t('Report schedule'), ALERT_CONDITION_SCHEDULE_TEXT: t('Alert condition schedule'), TIMEZONE_TEXT: t('Timezone'), @@ -1284,6 +1290,7 @@ const AlertReportModal: FunctionComponent = ({
{TRANSLATIONS.SQL_QUERY_TEXT} + *
= ({
- {TRANSLATIONS.VALUE_TEXT}{' '} - + {TRANSLATIONS.VALUE_TEXT} *