From f849aa31a01da5cb0c1080a53b6463a3b5a1c83d Mon Sep 17 00:00:00 2001 From: Alexander Kubyshkin Date: Thu, 31 Mar 2022 21:21:30 +0300 Subject: [PATCH] Fix operator description popup in Log Browser shortened (#46574). (#46575) --- packages/grafana-ui/src/components/Typeahead/TypeaheadInfo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/Typeahead/TypeaheadInfo.tsx b/packages/grafana-ui/src/components/Typeahead/TypeaheadInfo.tsx index 30febf4cdd1..df7b0ba3d55 100644 --- a/packages/grafana-ui/src/components/Typeahead/TypeaheadInfo.tsx +++ b/packages/grafana-ui/src/components/Typeahead/TypeaheadInfo.tsx @@ -21,7 +21,7 @@ const getStyles = (theme: GrafanaTheme, height: number, visible: boolean) => { box-shadow: 0 0 20px ${theme.colors.dropdownShadow}; visibility: ${visible === true ? 'visible' : 'hidden'}; width: 250px; - height: ${height + parseInt(theme.spacing.xxs, 10)}px; + min-height: ${height + parseInt(theme.spacing.xxs, 10)}px; position: relative; word-break: break-word; `,