diff --git a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_points_table.tsx b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_points_table.tsx index 5c8c9fd07246..5b3a1f24b4de 100644 --- a/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_points_table.tsx +++ b/x-pack/platform/plugins/shared/aiops/public/components/change_point_detection/change_points_table.tsx @@ -8,9 +8,7 @@ import { EuiBadge, EuiEmptyPrompt, - EuiIcon, EuiInMemoryTable, - EuiToolTip, type DefaultItemAction, type EuiBasicTableColumn, } from '@elastic/eui'; @@ -181,21 +179,15 @@ export const ChangePointsTable: FC = ({ id: 'pValue', 'data-test-subj': 'aiopsChangePointPValue', field: 'p_value', - name: ( - - - {i18n.translate('xpack.aiops.changePointDetection.pValueLabel', { - defaultMessage: 'p-value', - })} - - - - ), + name: i18n.translate('xpack.aiops.changePointDetection.pValueColumn', { + defaultMessage: 'p-value', + }), + nameTooltip: { + content: i18n.translate('xpack.aiops.changePointDetection.pValueTooltip', { + defaultMessage: + 'Indicates how extreme the change is. Lower values indicate greater change.', + }), + }, sortable: true, truncateText: false, render: (pValue: ChangePointAnnotation['p_value']) =>