From 05871ff18e86b17b4c4aa9b8176a83ef339a4807 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Fri, 8 Dec 2023 12:12:38 -0500 Subject: [PATCH] [8.12] [ML] Fix long field names overflowing in Anomaly detection wizard detector selection (#172715) (#172889) # Backport This will backport the following commits from `main` to `8.12`: - [[ML] Fix long field names overflowing in Anomaly detection wizard detector selection (#172715)](https://github.com/elastic/kibana/pull/172715) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Quynh Nguyen (Quinn) <43350163+qn895@users.noreply.github.com> --- .../field_stats_info_button.tsx | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/x-pack/plugins/ml/public/application/components/field_stats_flyout/field_stats_info_button.tsx b/x-pack/plugins/ml/public/application/components/field_stats_flyout/field_stats_info_button.tsx index f8a626c55e0aa..9903c6fb26655 100644 --- a/x-pack/plugins/ml/public/application/components/field_stats_flyout/field_stats_info_button.tsx +++ b/x-pack/plugins/ml/public/application/components/field_stats_flyout/field_stats_info_button.tsx @@ -80,18 +80,29 @@ export const FieldStatsInfoButton = ({ ) : null} - + - - - {label} - - + + {label} + ); };