diff --git a/superset-frontend/src/views/CRUD/alert/ExecutionLog.tsx b/superset-frontend/src/views/CRUD/alert/ExecutionLog.tsx index c424a931b3c1..8bdae92eb53d 100644 --- a/superset-frontend/src/views/CRUD/alert/ExecutionLog.tsx +++ b/superset-frontend/src/views/CRUD/alert/ExecutionLog.tsx @@ -22,6 +22,7 @@ import moment from 'moment'; import React, { useEffect, useMemo } from 'react'; import { Link, useParams } from 'react-router-dom'; import ListView from 'src/components/ListView'; +import { Tooltip } from 'src/components/Tooltip'; import SubMenu from 'src/views/components/SubMenu'; import withToasts from 'src/components/MessageToasts/withToasts'; import { fDuration } from 'src/modules/dates'; @@ -144,6 +145,15 @@ function ExecutionLog({ addDangerToast, isReportEnabled }: ExecutionLogProps) { { accessor: 'error_message', Header: t('Error message'), + Cell: ({ + row: { + original: { error_message = '' }, + }, + }: any) => ( + + {error_message} + + ), }, ], [isReportEnabled],