diff --git a/CHANGELOG.md b/CHANGELOG.md index a1139634e441..bb1b469baa09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### 📈 Features/Enhancements ### 🐛 Bug Fixes +* [BUG] Fix suggestion list cutoff issue ([#2607](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2607)) ### 🚞 Infrastructure @@ -52,7 +53,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### 🛠 Maintenance -* [Version] Increment to 1.4 ([#1341](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/1341)) +* [Version] Increment to 1.4 ([#1341](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/1341)) ### 🪛 Refactoring diff --git a/src/plugins/data/public/ui/typeahead/_suggestion.scss b/src/plugins/data/public/ui/typeahead/_suggestion.scss index 7d559e926ba6..70758d5b6211 100644 --- a/src/plugins/data/public/ui/typeahead/_suggestion.scss +++ b/src/plugins/data/public/ui/typeahead/_suggestion.scss @@ -141,7 +141,7 @@ $osdTypeaheadTypes: ( flex-grow: 0; /* 2 */ flex-basis: auto; /* 2 */ font-family: $euiCodeFontFamily; - width: 250px; + display: block; overflow: hidden; text-overflow: ellipsis; padding: $euiSizeXS $euiSizeS;