From db0455beb0a00c5d258d681c4878eaaab38db13e Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 14 Feb 2024 10:43:11 -0500 Subject: [PATCH] Give explicit heights to items in the extension list (#7777) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR gives the items in the extension list an explicit height so that they work properly within the uniform list when descriptions are missing. Screenshot 2024-02-14 at 10 19 14 AM I think we may want to consider using a `list` here instead of a `uniform_list` to allow them to have variable heights. Fixes #7756. Release Notes: - N/A --- crates/extensions_ui/src/extensions_ui.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/extensions_ui/src/extensions_ui.rs b/crates/extensions_ui/src/extensions_ui.rs index 2cbe0d433c..e6bc8027e9 100644 --- a/crates/extensions_ui/src/extensions_ui.rs +++ b/crates/extensions_ui/src/extensions_ui.rs @@ -216,6 +216,7 @@ impl ExtensionsPage { div().w_full().child( v_flex() .w_full() + .h(rems(7.)) .p_3() .mt_4() .gap_2()