From 11206a84449d29c77cd2f4d1e7b7982538bbe77d Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 7 Oct 2024 12:53:11 -0400 Subject: [PATCH] ui: Fix avatar indicators getting cut off (#18821) This PR fixes an issue introduced in #18810 that was causing the avatar indicators to get cut off. Release Notes: - N/A --- crates/ui/src/components/avatar/avatar.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/ui/src/components/avatar/avatar.rs b/crates/ui/src/components/avatar/avatar.rs index ebacd334fc9a2..302658b55c631 100644 --- a/crates/ui/src/components/avatar/avatar.rs +++ b/crates/ui/src/components/avatar/avatar.rs @@ -84,7 +84,6 @@ impl RenderOnce for Avatar { div() .size(container_size) .rounded_full() - .overflow_hidden() .when_some(self.border_color, |this, color| { this.border(border_width).border_color(color) })