From 8bc66b35aee2df2f869ff7f7b6598f2e5d5e65ec Mon Sep 17 00:00:00 2001
From: francesco-gaglione
<94604837+francesco-gaglione@users.noreply.github.com>
Date: Mon, 9 Mar 2026 16:18:12 +0100
Subject: [PATCH] extensions_ui: Fix extension author list overflow (#51045)
Closes #50995
Before you mark this PR as ready for review, make sure that you have:
- [ ] Added a solid test coverage and/or screenshots from doing manual
testing
- [x] Done a self-review taking into account security and performance
aspects
- [x] Aligned any UI changes with the [UI
checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist)
Release Notes:
- Fixed extension author's list overflow
---------
Co-authored-by: Danilo Leal
---
crates/extensions_ui/src/extensions_ui.rs | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/crates/extensions_ui/src/extensions_ui.rs b/crates/extensions_ui/src/extensions_ui.rs
index 1458b2104f31f4d987319c87a41bfd5538b2727f..7343edcdef3851bfeb7a3aa80f3449ff06f55d9f 100644
--- a/crates/extensions_ui/src/extensions_ui.rs
+++ b/crates/extensions_ui/src/extensions_ui.rs
@@ -870,9 +870,12 @@ impl ExtensionsPage {
)
.child(
h_flex()
+ .min_w_0()
+ .w_full()
.justify_between()
.child(
h_flex()
+ .min_w_0()
.gap_1()
.child(
Icon::new(IconName::Person)
@@ -889,6 +892,7 @@ impl ExtensionsPage {
.child(
h_flex()
.gap_1()
+ .flex_shrink_0()
.child({
let repo_url_for_tooltip = repository_url.clone();